-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
23 lines (22 loc) · 1 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
from setuptools import setup
setup(name='trapheus', version='0.1.2', author='stationeros (Rohit Kumar)',
author_email='rite2rohit88@gmail.com',
url='https://github.com/intuit/Trapheus',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing'
],
keywords='aws backup lambda rds snapshots step-functions state-machine aws-lambda-layer aws-lambda aws',
packages=['trapheus'],
install_requires=['boto3', 'aws-sam-cli'],
python_requires='>=3.7',
description='Backup and restore manager for AWS RDS instances'
)