36 строки
923 B
Python
36 строки
923 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
with open("README.rst") as fp:
|
|
long_description = fp.read()
|
|
|
|
|
|
setup(
|
|
name="pykube",
|
|
version="0.15.0",
|
|
description="Python client library for Kubernetes",
|
|
long_description=long_description,
|
|
author="Eldarion, Inc.",
|
|
author_email="development@eldarion.com",
|
|
license="Apache",
|
|
url="https://github.com/kelproject/pykube",
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
],
|
|
zip_safe=False,
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"requests>=2.12",
|
|
"requests-oauthlib",
|
|
"PyYAML",
|
|
"six>=1.10.0",
|
|
"tzlocal",
|
|
"oauth2client",
|
|
],
|
|
)
|