-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (49 loc) · 1.14 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
from setuptools import find_packages, setup
__version__ = '0.0.5'
URL = 'https://github.com/rainorangelemon/pytorch_geometric_multiagent'
install_requires = [
'tqdm',
'numpy',
'matplotlib',
'scipy',
'cvxpy',
'pybullet'
]
full_requires = install_requires
benchmark_requires = [
'wandb',
]
test_requires = [
'pytest',
'pytest-cov',
]
dev_requires = test_requires + [
'pre-commit',
]
setup(
name='pyg_multiagent',
version=__version__,
description='Graph Neural Network Library for Multi-Agent',
author='Chenning Yu',
author_email='[email protected]',
url=URL,
download_url=f'{URL}/archive/{__version__}.tar.gz',
keywords=[
'deep-learning',
'pytorch',
'geometric-deep-learning',
'graph-neural-networks',
'pytorch-geometric',
'multi-agent'
],
python_requires='>=3.8',
install_requires=install_requires,
extras_require={
'full': full_requires,
'benchmark': benchmark_requires,
'test': test_requires,
'dev': dev_requires,
},
packages=find_packages(),
include_package_data=True,
)