forked from sebdah/automated-ebs-snapshots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.07 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
""" Setup script for PyPI """
import os
from setuptools import setup
from ConfigParser import SafeConfigParser
settings = SafeConfigParser()
settings.read(os.path.realpath('automated_ebs_snapshots/settings.conf'))
setup(
name='automated-ebs-snapshots',
version=settings.get('general', 'version'),
license='Apache License, Version 2.0',
description='Automatic backup management of AWS EC2 EBS volumes',
author='Sebastian Dahlgren, Skymill Solutions',
author_email='sebastian.dahlgren@skymill.se',
url='https://github.com/skymill/automated-ebs-snapshots',
keywords="aws amazon web services ec2 ebs snapshot",
platforms=['Any'],
packages=['automated_ebs_snapshots'],
scripts=['automated-ebs-snapshots'],
include_package_data=True,
zip_safe=False,
install_requires=['boto >= 2.29.1'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)