-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.06 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
from setuptools import setup
setup(
name='rds-create-freestoragespace-alarms',
version='1.4',
description='AWS Cloudwatch RDS Tool for creating Metric Alarms',
url='https://github.com/percolate/rds-create-freestoragespace-alarms',
author='Mihailo Pavlisin',
author_email='[email protected]',
license='GPLv3',
keywords='aws rds2 rds alarms cloudwatch boto',
packages=['rds_create_freestoragespace_alarms'],
install_requires=[
'boto',
'docopt'
],
entry_points={
'console_scripts': [
('rds-create-freestoragespace-alarms='
'rds_create_freestoragespace_alarms.main:main')
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: System :: Systems Administration"
]
)