forked from adhorn/aws-chaos-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1018 Bytes
/
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
from setuptools import setup
requirements = [
'python-json-logger >=0.1.11, <2.0.0',
'boto3 >= 1.10.17'
]
setup(
name='chaos_aws',
version='1.0.0',
author='Adrian Hornsby',
author_email='adhorn@amazon.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only"
],
keywords='chaos engineering aws',
description='Python scripts to do chaos engineering.',
packages=['scripts'],
entry_points={
'console_scripts': [
'script-fail-az=scripts.fail_az:entry_point',
'script-stop-instance=scripts.stop_random_instance:entry_point',
'script-fail-rds=scripts.fail_rds:entry_point',
'script-fail-elasticache=scripts.fail_elasticache:entry_point',
],
},
install_requires=requirements
)