forked from rscdupree/ebs_snapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 860 Bytes
/
setup.py
File metadata and controls
38 lines (37 loc) · 860 Bytes
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
"""
Setup file for EBS Snapper
"""
from setuptools import setup
setup(
name='ebs_snapper',
description='Collection of AWS Lambda functions create, manage, and delete EBS snapshots',
keywords='aws lambda ebs ec2 snapshot backup',
version='0.10.6',
author='Rackspace',
author_email='fps@rackspace.com',
url='https://github.com/rackerlabs/ebs_snapper',
packages=['ebs_snapper'],
entry_points={
'console_scripts': [
'ebs-snapper=ebs_snapper.shell:main'
]
},
test_suite='tests',
install_requires=[
'botocore',
'boto3',
'pytimeparse',
'crontab',
'lambda_uploader'
],
tests_require=[
'moto',
'flake8',
'pylint',
'tox',
'tox-pyenv',
'pytest',
'pytest-mock'
]
)