diff --git a/requirements.txt b/requirements.txt index 8977009..f4791f4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,6 @@ stone>=2,<=3.3.9 # Other dependencies for development ply pytest -pytest-runner==5.2.0 sphinx sphinx_rtd_theme twine diff --git a/setup.cfg b/setup.cfg index 0ccf0a3..c2a1b3a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,3 @@ -# See http://doc.pytest.org/en/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner -[aliases] -test=pytest - [metadata] description_file=README.rst diff --git a/setup.py b/setup.py index 818f922..89d6184 100644 --- a/setup.py +++ b/setup.py @@ -30,19 +30,6 @@ 'stone>=2,<=3.3.9', ] -setup_requires = [ - # Pin pytest-runner to 5.2.0, since 5.3.0 uses `find_namespaces` directive, not supported in - # Python 2.7 - 'pytest-runner==5.2.0', -] - -# WARNING: This imposes limitations on test/requirements.txt such that the -# full Pip syntax is not supported. See also -# . -test_reqs = [] -with open('test/requirements.txt') as f: - test_reqs += f.read().splitlines() - with codecs.open('README.rst', encoding='utf-8') as f: README = f.read() @@ -50,8 +37,6 @@ name='dropbox', version=version, install_requires=install_reqs, - setup_requires=setup_requires, - tests_require=test_reqs, packages=['dropbox'], zip_safe=False, author_email='dev-platform@dropbox.com',