-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 1.07 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
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name='kubeconfig',
description='A simple wrapper around Kubernetes kubectl',
long_description=open('README.rst').read(),
author='Greg Taylor',
author_email='[email protected]',
license='BSD',
url='http://kubeconfig-python.readthedocs.io',
version='1.1.1',
packages=find_packages(),
install_requires=[
'PyYAML>=5.2',
],
tests_require=[
'mock',
'pytest-cov',
'pytest', # this must be last due to a bug in setuptools
# https://github.com/pypa/setuptools/issues/196
],
setup_requires=[
'pytest-runner',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
],
)