File tree 2 files changed +11
-10
lines changed
2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change
1
+ # Dependencies required for installation (keep in sync with setup.py)
2
+ requests >= 2.16.2
3
+ six >= 1.12.0
4
+ stone >= 2.*
5
+ # Other dependencies for development
1
6
ply
2
7
pytest
3
8
pytest-runner
4
- requests
5
- six == 1.14.0
6
9
sphinx
7
10
twine
8
11
wheel
9
- stone >= 2.*
Original file line number Diff line number Diff line change 24
24
break
25
25
version = eval (line .split ('=' , 1 )[1 ].strip ()) # pylint: disable=eval-used
26
26
27
- # WARNING: This imposes limitations on test/requirements.txt such that the
28
- # full Pip syntax is not supported. See also
29
- # <http://stackoverflow.com/questions/14399534/>.
30
- install_reqs = []
31
- with open ('requirements.txt' ) as f :
32
- install_reqs += f .read ().splitlines ()
27
+ install_reqs = [
28
+ 'requests >= 2.16.2' ,
29
+ 'six >= 1.12.0' ,
30
+ 'stone >= 2.*' ,
31
+ ]
33
32
34
33
setup_requires = [
35
34
# Pin pytest-runner to 5.2.0, since 5.3.0 uses `find_namespaces` directive, not supported in
64
63
url = 'http://www.dropbox.com/developers' ,
65
64
# From <https://pypi.python.org/pypi?%3Aaction=list_classifiers>
66
65
classifiers = [
67
- 'Development Status :: 4 - Beta ' ,
66
+ 'Development Status :: 5 - Stable ' ,
68
67
'Intended Audience :: Developers' ,
69
68
'License :: OSI Approved :: MIT License' ,
70
69
'Operating System :: OS Independent' ,
You can’t perform that action at this time.
0 commit comments