forked from pyg-team/pytorch_geometric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 827 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
from setuptools import setup, find_packages
__version__ = '0.2.0'
url = 'https://github.com/rusty1s/pytorch_geometric'
install_requires = [
'numpy',
'scipy',
'networkx',
'plyfile',
]
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov']
setup(
name='torch_geometric',
version=__version__,
description='Geometric Deep Learning Extension Library for PyTorch',
author='Matthias Fey',
author_email='[email protected]',
url=url,
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
keywords=[
'pytorch', 'geometric-deep-learning', 'graph', 'mesh',
'neural-networks', 'spline-cnn'
],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
packages=find_packages())