-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian Dahlgren
committed
Jan 27, 2014
1 parent
a07ef4e
commit 58c8b28
Showing
6 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
recursive-include automated_ebs_snapshots * | ||
include automated-ebs-snapshots | ||
include README | ||
include LICENSE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
install: | ||
python setup.py build | ||
python setup.py install | ||
release: | ||
python setup.py register | ||
python setup.py sdist upload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[general] | ||
version: 0.1.0-SNAPSHOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
boto>=2.23.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 provisioning for AWS DynamoDB tables', | ||
author='Sebastian Dahlgren', | ||
author_email='sebastian.dahlgren@gmail.com', | ||
url='http://sebdah.github.com/dynamic-dynamodb/', | ||
keywords="dynamodb aws provisioning amazon web services", | ||
platforms=['Any'], | ||
packages=['automated_ebs_snapshots'], | ||
scripts=['automated-ebs-snapshots'], | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=['boto >= 2.23.0'], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python' | ||
] | ||
) |