-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (45 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
47
48
from os import path
from setuptools import setup
tests_require = ['pytest']
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='consulk8s',
use_scm_version=True,
py_modules=['consulk8s'],
license='BSD',
author='Josh Benner',
author_email='[email protected]',
url='https://github.com/joshbenner/consulk8s',
description='Integrate Consul and Kubernetes',
long_description=long_description,
setup_requires=['setuptools_scm'],
tests_require=tests_require,
extras_require={
'test': tests_require
},
install_requires=[
'click>=7,<8',
'kubernetes>=8,<9'
],
entry_points={
'console_scripts': [
'consulk8s = consulk8s:cli'
]
},
package_data={'': ['LICENSE', 'README.rst']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Clustering',
'Topic :: System :: Systems Administration'
]
)