Skip to content

Commit 7553719

Browse files
committed
Improve setup
1 parent d0cfdcd commit 7553719

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ sudo: false
33
python:
44
- "2.7"
55
- "3.3"
6-
- "3.4"
76
- "3.5"
87
# command to install dependencies,
98
# e.g. pip install -r requirements.txt --use-mirrors

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[metadata]
22
description-file = README.md
3+
4+
[bdist_wheel]
5+
universal = 1

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'baidu cloud storage', 'baidu personal cloud storage',
2323
'百度云', '百度云盘', '百度网盘', '百度个人云存储'],
2424
classifiers = [
25-
'Development Status :: 5 - Production/Stable',
25+
'Development Status :: 4 - Beta'
2626
'Environment :: Console',
2727
'Intended Audience :: End Users/Desktop',
2828
'Intended Audience :: Developers',
@@ -34,7 +34,9 @@
3434
'Operating System :: POSIX',
3535
'Programming Language :: Python',
3636
'Topic :: Utilities',
37-
'Topic :: Internet :: WWW/HTTP']
37+
'Topic :: Internet :: WWW/HTTP'],
38+
extras_require = {
39+
'requests' : ['requests']}
3840
)
3941

40-
# vim: set fileencoding=utf-8
42+
# vim: tabstop=4 noexpandtab shiftwidth=4 softtabstop=4 ff=unix fileencoding=utf-8

0 commit comments

Comments
 (0)