forked from DeepGraphLearning/torchdrug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1018 Bytes
/
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
import setuptools
if __name__ == "__main__":
setuptools.setup(
name="torchdrug",
description="A powerful and flexible machine learning platform for drug discovery",
version="0.1.0",
license="Apache-2.0",
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.4.0",
"torch-scatter>=1.4.0",
"decorator",
"numpy>=1.11",
"matplotlib",
"tqdm",
"networkx",
"jinja2",
],
python_requires=">=3.5,<3.9",
)