Drop setup_requires from rustapi_module

The PEP 518 way to do this is with pyproject.toml. tox doesn't support
PEP 518 yet, but we get around that by using pip install -e . as part of
the tox build until PEP 518 support arrives in tox.
This commit is contained in:
Paul Ganssle 2018-08-21 12:48:22 -04:00
parent 078bea4345
commit 113de1bcd3
No known key found for this signature in database
GPG Key ID: CD54FCE3D964BEFB
1 changed files with 0 additions and 2 deletions

View File

@ -30,7 +30,6 @@ def get_py_version_cfgs():
return out_cfg
setup_requires = ['setuptools-rust>=0.6.1']
install_requires = []
tests_require = install_requires + ['pytest', 'pytest-benchmark']
@ -51,7 +50,6 @@ setup(
rustc_flags=get_py_version_cfgs())],
install_requires=install_requires,
tests_require=tests_require,
setup_requires=setup_requires,
include_package_data=True,
zip_safe=False,
cmdclass=dict(test=PyTest)