-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (65 loc) · 2.13 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
62
63
64
65
66
67
68
"""Setup file for PyPi."""
import io
import setuptools
def setup():
"""Setup function for PyPi."""
with io.open('README.rst') as fp:
readme = fp.read()
setuptools.setup(
name='check-reserved-instances',
license='BSD',
description=(
'Compare instance reservations and running instances for AWS '
'services'),
long_description=readme + '\n',
author='Terbium Labs',
author_email='developers@terbiumlabs.com',
url='https://github.com/TerbiumLabs/check-reserved-instances',
keywords=(
'ec2 elasticache rds aws reserved instances amazon web services'),
platforms=['Any'],
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
use_scm_version=True,
setup_requires=['setuptools_scm'],
include_package_data=True,
zip_safe=False,
install_requires=[
'boto',
'boto3',
'click',
'configparser',
'Jinja2',
'MarkupSafe',
'python-dateutil'
],
tests_require=[
'mock',
'pytest',
'pytest-cov'
],
entry_points={
'console_scripts': ['check-reserved-instances = '
'check_reserved_instances:cli']
},
package_data={
'': ['LICENSE'],
'check_reserved_instances':
['check_reserved_instances/templates/*.html'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)
if __name__ == '__main__':
setup()