forked from pyg-team/pytorch_geometric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1011 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
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
__version__ = '2.0.2'
URL = 'https://github.com/pyg-team/pytorch_geometric'
install_requires = [
'numpy',
'tqdm',
'scipy',
'networkx',
'scikit-learn',
'requests',
'pandas',
'rdflib',
'googledrivedownloader',
'jinja2',
'pyparsing',
'yacs',
'PyYAML',
]
tests_require = ['pytest', 'pytest-cov', 'mock']
setup(
name='torch_geometric',
version=__version__,
description='Graph Neural Network Library for PyTorch',
author='Matthias Fey',
author_email='[email protected]',
url=URL,
download_url=f'{URL}/archive/{__version__}.tar.gz',
keywords=[
'deep-learning'
'pytorch',
'geometric-deep-learning',
'graph-neural-networks',
'graph-convolutional-networks',
],
python_requires='>=3.6',
install_requires=install_requires,
extras_require={'test': tests_require},
packages=find_packages(),
include_package_data=True,
)