-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
29 lines (26 loc) · 821 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
from setuptools import setup, find_packages
__version__ = '1.0.0'
url = 'https://github.com/rusty1s/deep-graph-matching-consensus'
install_requires = []
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov']
setup(
name='dgmc',
version=__version__,
description='Implementation of Deep Graph Matching Consensus in 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',
'graph-matching',
'neighborhood-consensus',
],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
packages=find_packages(),
)