forked from DeepGraphLearning/torchdrug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.79 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
import setuptools
with open("README.md", "r") as fin:
long_description = fin.read()
if __name__ == "__main__":
setuptools.setup(
name="torchdrug",
description="A powerful and flexible machine learning platform for drug discovery",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://torchdrug.ai/",
author="TorchDrug Team",
version="0.1.3",
license="Apache-2.0",
keywords=["deep-learning", "pytorch", "drug-discovery"],
packages=setuptools.find_packages(),
package_data={
"torchdrug": [
"layers/functional/extension/*.h",
"layers/functional/extension/*.cuh",
"layers/functional/extension/*.cpp",
"layers/functional/extension/*.cu",
"utils/extension/*.cpp",
"utils/template/*.html",
]
},
test_suite="nose.collector",
install_requires=[
"torch>=1.8.0",
"torch-scatter>=2.0.8",
"decorator",
"numpy>=1.11",
"rdkit-pypi>=2020.9",
"matplotlib",
"tqdm",
"networkx",
"ninja",
"jinja2",
],
python_requires=">=3.7,<3.10",
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
"Programming Language :: Python :: 3",
],
)