-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (29 loc) · 1.04 KB
/
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
from distutils.core import setup
setup(
name="cri",
packages=['cri'],
scripts=[],
version='1.8.1',
description='Python client for kubernetes container runtime interface (CRI)',
author='Pengfei Ni',
author_email="[email protected]",
license="Apache License Version 2.0",
url="https://github.com/feiskyer/python-cri",
keywords=['kubernetes', 'kubelet-cri', 'containers'],
install_requires=["grpcio"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)