Commit fb188a3a authored by rusty1s's avatar rusty1s
Browse files

added download link

parent 40fc0122
......@@ -5,6 +5,7 @@ from setuptools import setup, find_packages
import build # noqa
__version__ = '0.1.0'
url = 'https://github.com/rusty1s/pytorch_scatter'
install_requires = ['cffi']
setup_requires = ['pytest-runner', 'cffi']
......@@ -15,9 +16,10 @@ setup(
name='torch_scatter',
version=__version__,
description='PyTorch Extension Library of Optimised Scatter-Operations',
url='https://github.com/rusty1s/pytorch_scatter',
author='Matthias Fey',
author_email='matthias.fey@tu-dortmund.de',
url=url,
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require + docs_require,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment