-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 981 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
install_requires = [
'boto3>=1.4.5',
'click>=6.7',
'tabulate>=0.7.7',
'Jinja2>=2.9.6'
]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: System :: Clustering',
]
with open('README.rst', 'r') as f:
long_description = f.read()
description = ('Command-line toolkit to help understand information '
'about your AWS RDS Parameter Groups.')
setup(
name='rdspg',
version='0.1.9',
description=description,
long_description=long_description,
author='Xiuming Chen',
author_email='[email protected]',
url='https://github.com/cxmcc/rdspg',
packages=['rdspg'],
package_data={'rdspg': ['terraform_*.jinja']},
entry_points={'console_scripts': ['rdspg = rdspg.main:main']},
install_requires=install_requires,
keywords=['AWS', 'RDS', 'Parameter Groups', 'Relational Database Service'],
classifiers=classifiers,
)