File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ stone>=2,<=3.3.9
55# Other dependencies for development
66ply
77pytest
8- pytest-runner == 5.2.0
98sphinx
109sphinx_rtd_theme
1110twine
Original file line number Diff line number Diff line change 1- # See http://doc.pytest.org/en/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner
2- [aliases]
3- test =pytest
4-
51[metadata]
62description_file =README.rst
73
Original file line number Diff line number Diff line change 3030 'stone>=2,<=3.3.9' ,
3131]
3232
33- setup_requires = [
34- # Pin pytest-runner to 5.2.0, since 5.3.0 uses `find_namespaces` directive, not supported in
35- # Python 2.7
36- 'pytest-runner==5.2.0' ,
37- ]
38-
39- # WARNING: This imposes limitations on test/requirements.txt such that the
40- # full Pip syntax is not supported. See also
41- # <http://stackoverflow.com/questions/14399534/>.
42- test_reqs = []
43- with open ('test/requirements.txt' ) as f :
44- test_reqs += f .read ().splitlines ()
45-
4633with codecs .open ('README.rst' , encoding = 'utf-8' ) as f :
4734 README = f .read ()
4835
4936dist = setup (
5037 name = 'dropbox' ,
5138 version = version ,
5239 install_requires = install_reqs ,
53- setup_requires = setup_requires ,
54- tests_require = test_reqs ,
5540 packages = ['dropbox' ],
5641 zip_safe = False ,
5742 author_email = 'dev-platform@dropbox.com' ,
You can’t perform that action at this time.
0 commit comments