Merge pull request #132 from dims/sync-setup-cfg-and-requirements-txt

Sync requirements and add license info
This commit is contained in:
Mehdy Bohlool 2017-02-22 14:20:59 -08:00 committed by GitHub
commit 2e5d52e41d
2 changed files with 16 additions and 13 deletions

View File

@ -1,9 +1,9 @@
certifi >= 14.05.14
six>=1.9.0
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.19.1
pyyaml >= 3.12
oauth2client >= 4.0.0
ipaddress >= 1.0.17
websocket-client>=0.32.0
certifi>=14.05.14 # MPL
six>=1.9.0 # MIT
python-dateutil>=2.5.3 # BSD
setuptools>=21.0.0 # PSF/ZPL
urllib3>=1.19.1 # MIT
pyyaml>=3.12 # MIT
oauth2client>=4.0.0 # Apache-2.0
ipaddress>=1.0.17 # PSF
websocket-client>=0.32.0 # LGPLv2+

View File

@ -28,13 +28,16 @@ DEVELOPMENT_STATUS = "3 - Alpha"
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"urllib3 >= 1.19",
"six >= 1.10",
"certifi",
"ipaddress",
"oauth2client",
"setuptools",
"six",
"urllib3",
"python-dateutil",
"pyyaml",
"oauth2client",
"ipaddress"]
"websocket-client",
]
setup(
name=PACKAGE_NAME,