forked from spekosolutions/ecs-auditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·54 lines (52 loc) · 1.64 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
#!/usr/bin/env python
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/SpekoTechnologies/ecs-auditor
"""
# Always prefer setuptools over distutils
from io import open
from setuptools import setup, find_packages
setup(
name='ecs-auditor', # Required
version='1.0.0', # Required
url='https://github.com/SpekoTechnologies/ecs-auditor', # Optional
author='Speko Technologies', # Optional
author_email='info@speko.io', # Optional
description='An ECS Auditor', # Required
packages=find_packages(), # Required
long_description=open('README.rst').read(), # Optional
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Infrastructure/DevOps',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
setup_requires=[
"ansible",
],
install_requires=[
"boto3==1.7.41",
"jsondiff",
"PyGithub==1.40",
"python-coveralls==2.7.0",
"python-dateutil==2.7.3",
"python-jose-ext==1.3.2.2",
"simplejson",
"pyaml==17.10.0",
"ansible-vault",
"xlsxwriter",
],
entry_points={ # Optional
'console_scripts': [
'ecs-auditor=ecs_auditor.cmdline:execute',
],
},
keywords='ecs auditor aws ssm python', # Optional
)