Commit 8090dd8f authored by rusty1s's avatar rusty1s
Browse files

removed docs require

parent 2fe2bbf2
...@@ -8,7 +8,6 @@ url = 'https://github.com/rusty1s/pytorch_scatter' ...@@ -8,7 +8,6 @@ url = 'https://github.com/rusty1s/pytorch_scatter'
install_requires = ['cffi'] install_requires = ['cffi']
setup_requires = ['pytest-runner', 'cffi'] setup_requires = ['pytest-runner', 'cffi']
tests_require = ['pytest', 'pytest-cov'] tests_require = ['pytest', 'pytest-cov']
docs_require = ['Sphinx', 'sphinx_rtd_theme']
setup( setup(
name='torch_scatter', name='torch_scatter',
...@@ -21,7 +20,7 @@ setup( ...@@ -21,7 +20,7 @@ setup(
keywords=['pytorch', 'scatter', 'deep-learning'], keywords=['pytorch', 'scatter', 'deep-learning'],
install_requires=install_requires, install_requires=install_requires,
setup_requires=setup_requires, setup_requires=setup_requires,
tests_require=tests_require + docs_require, tests_require=tests_require,
packages=find_packages(exclude=['build']), packages=find_packages(exclude=['build']),
ext_package='', ext_package='',
cffi_modules=[osp.join(osp.dirname(__file__), 'build.py:ffi')], cffi_modules=[osp.join(osp.dirname(__file__), 'build.py:ffi')],
......
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