File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 27
27
# prerequisite: setuptools
28
28
# http://pypi.python.org/pypi/setuptools
29
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
- ]
30
+ with open ('requirements.txt' ) as f :
31
+ REQUIRES = f .readlines ()
32
+
33
+ with open ('test-requirements.txt' ) as f :
34
+ TESTS_REQUIRES = f .readlines ()
41
35
42
36
setup (
43
37
name = PACKAGE_NAME ,
49
43
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
49
'kubernetes.client.models' ],
You can’t perform that action at this time.
0 commit comments