From 061ba67b5c513b6ee9f8dedef3ae9f59194d3276 Mon Sep 17 00:00:00 2001 From: Rodrigue Date: Mon, 5 Feb 2018 11:18:16 +0100 Subject: [PATCH] Hotfix dependencies --- amicleaner/__init__.py | 2 +- requirements.txt | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/amicleaner/__init__.py b/amicleaner/__init__.py index 1ce92da..acb668d 100644 --- a/amicleaner/__init__.py +++ b/amicleaner/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- __title__ = 'amicleaner' -__version__ = '0.2.0' +__version__ = '0.2.1' __short_version__ = '.'.join(__version__.split('.')[:2]) __author__ = 'Guy Rodrigue Koffi' __author_email__ = 'koffirodrigue@gmail.com' diff --git a/requirements.txt b/requirements.txt index 70649f2..7cca5f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,5 @@ argparse boto boto3 prettytable +future blessings==1.6 diff --git a/setup.py b/setup.py index bf20c0b..0027df6 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('HISTORY.rst') as history_file: history = history_file.read() -install_requirements = ['awscli', 'argparse', 'boto', +install_requirements = ['awscli', 'argparse', 'boto', 'future', 'boto3', 'prettytable', 'blessings'] test_requirements = ['moto', 'pytest', 'pytest-pep8', 'pytest-cov']