From ab3bc7918d4cb66689647d757f441c398dfd3191 Mon Sep 17 00:00:00 2001 From: Shivashis Padhi Date: Tue, 29 Sep 2020 23:30:26 +0530 Subject: [PATCH] Prepare 0.1.12 release - Bump versions in setup.py, README.md - Add boto3 as requirements --- README.md | 2 +- requirements.txt | 3 ++- setup.py | 12 +++--------- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8b7d985..9b3e1f6 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ To get a better Landsat image using felicette use: ------------------------- ### Latest release -[0.1.10](https://github.com/plant99/felicette/releases/tag/0.1.10) +[0.1.12](https://github.com/plant99/felicette/releases/tag/0.1.12) ------------------------- diff --git a/requirements.txt b/requirements.txt index 2f9a0e6..ca5a707 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ tqdm==4.48.0 rasterio==1.1.5 rio-color==1.0.0 pillow==7.2.0 -opencv-python==4.3.0.36 \ No newline at end of file +opencv-python==4.3.0.36 +boto3==1.14.21 \ No newline at end of file diff --git a/setup.py b/setup.py index 0b2432a..bbf312b 100644 --- a/setup.py +++ b/setup.py @@ -16,11 +16,12 @@ "rio-color==1.0.0", "pillow==7.2.0", "opencv-python==4.3.0.36", + "boto3==1.14.21" ] setup( name="felicette", - version="0.1.10", + version="0.1.12", url="https://github.com/plant99/felicette", license="MIT", author="Shivashis Padhi", @@ -35,22 +36,15 @@ entry_points={"console_scripts": ["felicette = felicette.cli:main",],}, classifiers=[ # As from http://pypi.python.org/pypi?%3Aaction=list_classifiers - # 'Development Status :: 1 - Planning', - # "Development Status :: 2 - Pre-Alpha", "Development Status :: 3 - Alpha", - # 'Development Status :: 4 - Beta', - # 'Development Status :: 5 - Production/Stable', - # 'Development Status :: 6 - Mature', - # 'Development Status :: 7 - Inactive', "Environment :: Console", - "Intended Audience :: Developers", + "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: POSIX", "Operating System :: MacOS", "Operating System :: Unix", "Operating System :: Microsoft :: Windows", "Programming Language :: Python", - "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", ],