forked from pyg-team/pytorch_geometric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 880 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 880 Bytes
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
from setuptools import setup, find_packages
__version__ = '1.3.0'
url = 'https://github.com/rusty1s/pytorch_geometric'
install_requires = [
'numpy',
'scipy',
'networkx',
'scikit-learn',
'plyfile',
'pandas',
'rdflib',
'h5py',
'googledrivedownloader',
]
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov', 'mock']
setup(
name='torch_geometric', version=__version__,
description='Geometric Deep Learning Extension Library for PyTorch',
author='Matthias Fey', author_email='matthias.fey@tu-dortmund.de', url=url,
download_url='{}/archive/{}.tar.gz'.format(url, __version__), keywords=[
'pytorch',
'geometric-deep-learning',
'graph-neural-networks',
], install_requires=install_requires, setup_requires=setup_requires,
tests_require=tests_require, packages=find_packages())