forked from divelab/DIG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.63 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
from dig.version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov', 'mock']
setuptools.setup(
name="dive_into_graphs",
version=__version__,
author="DIVE Lab@TAMU",
author_email="[email protected]",
# entry_points={
# 'console_scripts': [
# 'dig=dig.xxx.xxx'
# ]
# },
maintainer="DIVE Lab@TAMU",
# maintainer_email="xxx",
license="GPLv3",
# keywords="xxx",
description="DIG: Dive into Graphs is a turnkey library for graph deep learning research.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/divelab/DIG",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=['scipy',
'cilog',
'typed-argument-parser==1.7.2',
'captum==0.2.0',
'munch',
'gdown',
'shap',
'IPython',
'tqdm',
'rdkit-pypi',
'pandas',
'sympy',
'pyscf>=1.7.6',
'hydra-core'],
python_requires='>=3.6',
setup_requires=setup_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
include_package_data=True
)