-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
58 lines (55 loc) · 1.55 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
58
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
install_requires = [
'setuptools==59.5.0',
'cilog>=1.2.3',
'gdown>=4.4.0',
'matplotlib==3.5.2',
'munch==2.5.0',
'networkx==2.8',
'ogb>=1.3.4',
'pytest==7.1.2',
'pytest-cov~=3.0',
'pytest-xdist~=2.5',
'ruamel.yaml==0.17.21',
'sphinx>=4.5',
'protobuf==3.20.1',
'sphinx-rtd-theme==1.0.0',
'tensorboard==2.8.0',
'tqdm==4.64.0',
'typed-argument-parser==1.7.2',
'dive-into-graphs',
'cvxopt>=1.3.0',
'pynvml>=11.4.1',
'psutil>=5.9.1'
]
setuptools.setup(
name="graph-ood",
version="1.1.1",
author="Shurui Gui, Xiner Li",
author_email="[email protected]",
description="GOOD: A Graph Out-of-Distribution Benchmark",
long_description=long_description,
long_description_content_type="text/markdown",
license='GPLv3',
url="https://github.com/divelab/GOOD",
project_urls={
"Bug Tracker": "https://github.com/divelab/GOOD/issues",
},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
package_dir={"GOOD": "GOOD"},
install_requires=install_requires,
entry_points = {
'console_scripts': [
'goodtg = GOOD.kernel.main:goodtg',
'goodtl = GOOD.kernel.launch:launch'
]
},
python_requires=">=3.8",
)