This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
forked from manheim/manheim-c7n-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (57 loc) · 1.99 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
from setuptools import setup, find_packages
from manheim_c7n_tools.version import VERSION, PROJECT_URL
with open('README.md') as f:
long_description = f.read()
requires = [
'boto3',
'docutils>=0.10,<0.15',
'tabulate>=0.8.0,<0.9.0',
# In order to work with the "mu" Lambda function management tool,
# we need PyYAML 3.x, and need it as source and not a wheel
'pyyaml',
'c7n==0.8.46.0',
'c7n-mailer==0.5.7',
# for building generated policy docs
'sphinx>=1.8.0,<1.9.0',
'sphinx_rtd_theme',
'm2r'
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
setup(
name='manheim-c7n-tools',
version=VERSION,
author='Manheim Release Engineering',
author_email='[email protected]',
packages=find_packages(),
url=PROJECT_URL,
description='c7n policy generation script and related utilities',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=requires,
keywords="custodian aws c7n policy",
classifiers=classifiers,
entry_points={
'console_scripts': [
'policygen = manheim_c7n_tools.policygen:main',
's3-archiver = manheim_c7n_tools.s3_archiver:main',
'dryrun-diff = manheim_c7n_tools.dryrun_diff:main',
'mugc = manheim_c7n_tools.vendor.mugc:main',
'manheim-c7n-runner = manheim_c7n_tools.runner:main',
'errorscan = manheim_c7n_tools.errorscan:main'
]
}
)