forked from ChEB-AI/python-chebai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (47 loc) · 1.04 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
from setuptools import setup
from setuptools import find_packages
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="martin.glauer@ovgu.de",
description="",
zip_safe=False,
install_requires=[
"certifi",
"idna",
"joblib",
"networkx",
"numpy",
"pandas",
"python-dateutil",
"pytz",
"requests",
"scikit-learn",
"scipy",
"six",
"threadpoolctl",
"torch",
"typing-extensions",
"urllib3",
"transformers",
"fastobo",
"pysmiles",
"scikit-network",
"svgutils",
"matplotlib",
"rdkit",
"selfies",
"lightning",
"jsonargparse[signatures]>=4.17.0",
"omegaconf"
],
extras_require={"dev": ["black", "isort", "pre-commit"]},
)