Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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

Expand Down
15 changes: 0 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,13 @@
'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
# <http://stackoverflow.com/questions/14399534/>.
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()

dist = setup(
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',
Expand Down
Loading