forked from bonclay7/aws-amicleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (41 loc) · 1.54 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from amicleaner import __author__, __author_email__
from amicleaner import __license__, __version__
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
install_requirements = ['awscli', 'argparse', 'boto',
'boto3', 'prettytable', 'blessings']
test_requirements = ['moto', 'pytest', 'pytest-pep8', 'pytest-cov']
setup(
name='aws-amicleaner',
version=__version__,
description='Cleanup tool for AWS AMIs and snapshots',
long_description=readme + "\n\n" + history,
author=__author__,
author_email=__author_email__,
url='https://github.com/bonclay7/aws-amicleaner/',
license=__license__,
packages=find_packages(exclude=['tests']),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': [
'amicleaner = amicleaner.cli:main',
],
},
tests_require=test_requirements,
install_requires=install_requirements,
)