We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1036268 + e2d3f6d commit ff94d26Copy full SHA for ff94d26
1 file changed
setup.py
@@ -27,17 +27,11 @@
27
# prerequisite: setuptools
28
# http://pypi.python.org/pypi/setuptools
29
30
-REQUIRES = [
31
- "certifi",
32
- "ipaddress",
33
- "oauth2client",
34
- "setuptools",
35
- "six",
36
- "urllib3!=1.21",
37
- "python-dateutil",
38
- "pyyaml",
39
- "websocket-client",
40
-]
+with open('requirements.txt') as f:
+ REQUIRES = f.readlines()
+
+with open('test-requirements.txt') as f:
+ TESTS_REQUIRES = f.readlines()
41
42
setup(
43
name=PACKAGE_NAME,
@@ -49,6 +43,7 @@
49
url="https://github.com/kubernetes-incubator/client-python",
50
44
keywords=["Swagger", "OpenAPI", "Kubernetes"],
51
45
install_requires=REQUIRES,
46
+ tests_require=TESTS_REQUIRES,
52
47
packages=['kubernetes', 'kubernetes.client', 'kubernetes.config',
53
48
'kubernetes.watch', 'kubernetes.client.apis',
54
'kubernetes.client.models'],
0 commit comments