From 1f9c998815ddcb1ededb940ebc86ac816d2cf6aa Mon Sep 17 00:00:00 2001 From: Enric Lluelles Date: Thu, 10 Nov 2016 23:26:30 +0100 Subject: [PATCH] Add boto3 as dependency, bump version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index decf8ad..d3cb0d4 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ setup( name='troposphere-sugar', - version='0.0.4', + version='0.0.5', description='Common utilities on top of troposphere and boto for ease of clouformation template creation', author='Enric Lluelles', author_email='enric@lluel.es', url="https://github.com/enriclluelles/troposphere_sugar", packages=['troposphere_sugar', 'troposphere_sugar.decorators'], license='MIT', - install_requires=['troposphere>=1.2.0'] + install_requires=['troposphere>=1.2.0', 'boto3>=1.4.0'] )