forked from powerfulseal/powerfulseal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.2 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
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='1.1.0',
author='Mikolaj Pawlikowski',
author_email='mikolaj@pawlikowski.pl',
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.9.18,<1',
'spur>=0.3.20,<1',
'kubernetes>=1.0.0,<2',
'PyYAML>=3.12,<4',
'jsonschema>=2.6.0,<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,
)