forked from kelproject/pykube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 911 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.rst") as fp:
long_description = fp.read()
setup(
name="pykube",
version="0.14.0a1",
description="Python client library for Kubernetes",
long_description=long_description,
author="Eldarion, Inc.",
author_email="[email protected]",
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",
"requests-oauthlib",
"PyYAML",
"six",
"tzlocal",
"oauth2client",
],
)