forked from powerfulseal/powerfulseal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (54 loc) · 1.61 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='powerfulseal',
version='2.0.1',
author='Mikolaj Pawlikowski',
author_email='[email protected]',
url='https://github.com/bloomberg/powerfulseal',
packages=find_packages(),
license=read('LICENSE'),
description='PowerfulSeal - a powerful testing tool for Kubernetes clusters',
long_description=read('README.md'),
install_requires=[
'ConfigArgParse>=0.11.0,<1',
'Flask>=0.12.2,<0.13',
'termcolor>=1.1.0,<2',
'openstacksdk>=0.10.0,<1',
'spur>=0.3.20,<1',
'kubernetes>=1.0.0,<2',
'PyYAML>=3.12,<4',
'jsonschema>=2.6.0,<3',
'boto3>=1.5.15,<2.0.0',
'future>=0.16.0,<1',
'requests>=2.19.1,<3',
'prometheus_client>=0.3.0,<0.4.0',
'flask-cors>=3.0.6,<4',
'flask-swagger-ui>=3.18.0<4',
'coloredlogs>=10.0.0,<11.0.0',
'six>=1.12.0,<2'
],
extras_require={
'testing': [
'pytest>=3.0,<4',
'pytest-cov>=2.5,<3',
'mock>=2,<3',
]
},
entry_points={
'console_scripts': [
'seal = powerfulseal.cli.__main__:start',
'powerfulseal = powerfulseal.cli.__main__:start',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Test Tools',
'Programming Language :: Python :: 3',
],
python_requires='>=3',
include_package_data=True,
)