Update package information in setup.py

This commit is contained in:
mbohlool 2016-11-22 17:11:47 -08:00
parent ff365db2bf
commit b71a00dab7

View File

@ -25,8 +25,8 @@
import sys
from setuptools import setup, find_packages
NAME = "k8sclient"
VERSION = "1.0.0"
NAME = "kubernetes"
VERSION = "0.1.0"
# To install the library, run the following
#
@ -40,14 +40,15 @@ REQUIRES = ["urllib3 >= 1.19", "six >= 1.10", "certifi", "python-dateutil", "pyy
setup(
name=NAME,
version=VERSION,
description="Kubernetes",
description="Kubernetes python client",
author_email="",
url="",
keywords=["Swagger", "Kubernetes"],
url="http://kubernetes.io",
keywords=["Swagger", "OpenAPI", "Kubernetes"],
install_requires=REQUIRES,
packages=find_packages(),
packages=['kubernetes', 'kubernetes.client', 'kubernetes.util',
'kubernetes.client.apis', 'kubernetes.client.models'],
include_package_data=True,
long_description="""\
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
Python client for talk to a kubernetes cluster.
"""
)