forked from Mirantis/kqueen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (80 loc) · 2.13 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
"""Setup for kqueen package."""
from setuptools import setup, find_packages
version = '1.0'
with open('README.rst') as f:
long_description = ''.join(f.readlines())
test_require = [
'codacy-coverage',
'coveralls',
'faker',
'flake8',
'pytest',
'pytest-cov',
'pytest-env',
'pytest-flask',
'pytest-ordering',
]
setup(
name='kqueen',
version=version,
description='Kubernetes cluster orchestrator',
long_description=long_description,
author='Tomáš Kukrál',
author_email='[email protected]',
license='MIT',
url='https://github.com/Mirantis/kqueen/',
download_url='https://github.com/Mirantis/kqueen/archive/v{}.tar.gz'.format(version),
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'bcrypt',
'Flask==0.12.2',
'Flask-JWT==0.3.2',
'flask-swagger-ui',
'gunicorn',
'kubernetes',
'oauth2client==3.0.0',
'openstacksdk==0.16.0',
'python-neutronclient==6.9.0',
'pycrypto',
'prometheus_client',
'python-etcd',
'python-jenkins==0.4.16',
'python-ldap==3.0.0b4',
'pyyaml',
'requests',
'google-api-python-client==1.6.4',
'google-auth==1.2.1',
'google-auth-httplib2==0.0.3',
'azure-common==1.1.9',
'azure-mgmt-containerservice==3.0.0',
'msrestazure==0.4.25',
'urllib3==1.22'
],
setup_requires=[
'pytest-runner',
],
tests_require=test_require,
extras_require={
'test': test_require,
'dev': test_require + [
'ipython',
'sphinx',
'sphinx-autobuild',
'sphinx_rtd_theme',
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': [
'kqueen = kqueen.server:run',
],
},
)