-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
35 lines (33 loc) · 1.12 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
from setuptools import setup
from dynamodb_create_cloudwatch_alarms.constants import VERSION
setup(
name='dynamodb-create-cloudwatch-alarms',
version=VERSION,
description='AWS DynamoDB Tool for creating Metric Alarms',
url='https://github.com/percolate/dynamodb-create-cloudwatch-alarms',
author='Mihailo Pavlisin',
author_email='[email protected]',
license='GPLv3',
keywords='aws dynamodb alarms cloudwatch boto',
packages=['dynamodb_create_cloudwatch_alarms'],
install_requires=[
'boto',
'docopt'
],
entry_points={
'console_scripts': [
('dynamodb-create-cloudwatch-alarms='
'dynamodb_create_cloudwatch_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"
]
)