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

Skip to content

Commit b71a00d

Browse files
committed
Update package information in setup.py
1 parent ff365db commit b71a00d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

setup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
import sys
2626
from 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
#
@@ -40,14 +40,15 @@
4040
setup(
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
)

0 commit comments

Comments
 (0)