-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
21 lines (20 loc) · 934 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='shelvery', version='0.9.11', author='Base2Services R&D',
author_email='itsupport@base2services.com',
url='http://github.com/base2Services/shelvery-aws-backups',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Archiving :: Backup',
],
keywords='aws backup lambda ebs rds ami',
packages=['shelvery', 'shelvery_cli', 'shelvery_lambda'],
install_requires=['boto3', 'python-dateutil', 'pyyaml'],
python_requires='>=3.6',
description='Backup manager for AWS EBS and AWS RDS services',
entry_points={
'console_scripts': ['shelvery = shelvery_cli.__main__:main'],
})