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

Skip to content

Commit 2e5d52e

Browse files
authored
Merge pull request kubernetes-client#132 from dims/sync-setup-cfg-and-requirements-txt
Sync requirements and add license info
2 parents 6f03708 + 8ac4254 commit 2e5d52e

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
certifi >= 14.05.14
2-
six>=1.9.0
3-
python_dateutil >= 2.5.3
4-
setuptools >= 21.0.0
5-
urllib3 >= 1.19.1
6-
pyyaml >= 3.12
7-
oauth2client >= 4.0.0
8-
ipaddress >= 1.0.17
9-
websocket-client>=0.32.0
1+
certifi>=14.05.14 # MPL
2+
six>=1.9.0 # MIT
3+
python-dateutil>=2.5.3 # BSD
4+
setuptools>=21.0.0 # PSF/ZPL
5+
urllib3>=1.19.1 # MIT
6+
pyyaml>=3.12 # MIT
7+
oauth2client>=4.0.0 # Apache-2.0
8+
ipaddress>=1.0.17 # PSF
9+
websocket-client>=0.32.0 # LGPLv2+

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@
2828
# http://pypi.python.org/pypi/setuptools
2929

3030
REQUIRES = [
31-
"urllib3 >= 1.19",
32-
"six >= 1.10",
3331
"certifi",
32+
"ipaddress",
33+
"oauth2client",
34+
"setuptools",
35+
"six",
36+
"urllib3",
3437
"python-dateutil",
3538
"pyyaml",
36-
"oauth2client",
37-
"ipaddress"]
39+
"websocket-client",
40+
]
3841

3942
setup(
4043
name=PACKAGE_NAME,

0 commit comments

Comments
 (0)