-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
57 lines (56 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import find_packages, setup
packages = find_packages()
print(packages)
setup(
name="chebai",
version="0.0.2.dev0",
packages=packages,
package_data={"": ["**/*.txt", "**/*.json"]},
include_package_data=True,
url="",
license="",
author="MGlauer",
author_email="[email protected]",
description="",
zip_safe=False,
python_requires=">=3.9, <3.13",
install_requires=[
"certifi",
"idna",
"joblib",
"networkx",
"numpy<2",
"pandas",
"python-dateutil",
"pytz",
"requests",
"scikit-learn",
"scipy",
"six",
"threadpoolctl",
"torch",
"typing-extensions",
"urllib3",
"transformers",
"fastobo",
"pysmiles==1.1.2",
"scikit-network",
"svgutils",
"matplotlib",
"rdkit",
"selfies",
"lightning>=2.5",
"jsonargparse[signatures]>=4.17",
"omegaconf",
"seaborn",
"deepsmiles",
"iterative-stratification",
"wandb",
"chardet",
"pyyaml",
"torchmetrics",
"biopython",
"fair-esm",
],
extras_require={"dev": ["black", "isort", "pre-commit"]},
)