File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 2525import sys
2626from setuptools import setup , find_packages
2727
28- NAME = "k8sclient "
29- VERSION = "1.0 .0"
28+ NAME = "kubernetes "
29+ VERSION = "0.1 .0"
3030
3131# To install the library, run the following
3232#
4040setup (
4141 name = NAME ,
4242 version = VERSION ,
43- description = "Kubernetes" ,
43+ description = "Kubernetes python client " ,
4444 author_email = "" ,
45- url = "" ,
46- keywords = ["Swagger" , "Kubernetes" ],
45+ url = "http://kubernetes.io " ,
46+ keywords = ["Swagger" , "OpenAPI" , " Kubernetes" ],
4747 install_requires = REQUIRES ,
48- packages = find_packages (),
48+ packages = ['kubernetes' , 'kubernetes.client' , 'kubernetes.util' ,
49+ 'kubernetes.client.apis' , 'kubernetes.client.models' ],
4950 include_package_data = True ,
5051 long_description = """\
51- No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
52+ Python client for talk to a kubernetes cluster.
5253 """
5354)
You can’t perform that action at this time.
0 commit comments