From 740991c4d6e1fa229854a1d0c1a83da2cf5f81f8 Mon Sep 17 00:00:00 2001 From: Rodrigue Date: Mon, 5 Feb 2018 10:53:03 +0100 Subject: [PATCH] Bump to 0.2.0 --- README.rst | 3 +-- amicleaner/__init__.py | 2 +- setup.py | 9 ++++++++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 3b9503c..2fec53f 100644 --- a/README.rst +++ b/README.rst @@ -26,8 +26,7 @@ Prerequisites ------------- - `awscli `__ -- `python - 2.7 `__ +- `python 2.7 or 3+` - `python pip `__ This tool assumes your AWS credentials are in your environment, either with AWS diff --git a/amicleaner/__init__.py b/amicleaner/__init__.py index 7669916..1ce92da 100644 --- a/amicleaner/__init__.py +++ b/amicleaner/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- __title__ = 'amicleaner' -__version__ = '0.1.3' +__version__ = '0.2.0' __short_version__ = '.'.join(__version__.split('.')[:2]) __author__ = 'Guy Rodrigue Koffi' __author_email__ = 'koffirodrigue@gmail.com' diff --git a/setup.py b/setup.py index 313cdf0..bf20c0b 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,8 @@ license=__license__, packages=find_packages(exclude=['tests']), classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Intended Audience :: Information Technology', @@ -37,6 +38,12 @@ 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Software Development', 'Topic :: Software Development :: Libraries :: Python Modules', ], entry_points={