-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
21 lines (20 loc) · 903 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
setuptools.setup(
name="protac_degradation_predictor",
version="1.0.1",
author="Stefano Ribes",
url="https://github.com/ribesstefano/PROTAC-Degradation-Predictor",
author_email="ribes.stefano@gmail.com",
description="A package to predict PROTAC-induced protein degradation.",
long_description=open("README.md").read(),
packages=setuptools.find_packages(),
install_requires=["torch", "pytorch_lightning", "scikit-learn", "imbalanced-learn", "rdkit", "pandas", "joblib", "h5py", "optuna", "torchmetrics", "xgboost"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
package_data={"": ["data/*.h5", "data/*.pkl", "data/*.csv", "models/*.ckpt"]},
)