Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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+
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,16 @@
# 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,
Expand Down