From 2176fdca1005578f5c5120d22baed38a2ff7daec Mon Sep 17 00:00:00 2001 From: Javier Vegas-Regidor Date: Wed, 24 Nov 2021 11:02:49 +0000 Subject: [PATCH] Make description a one liner again and bump version --- .gitignore | 1 + mapgenerator/__init__.py | 2 +- setup.py | 8 +++++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ca97e15..f8f6bbd 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ doc tests scripts conf +build \ No newline at end of file diff --git a/mapgenerator/__init__.py b/mapgenerator/__init__.py index c3c8e3f..de496b1 100644 --- a/mapgenerator/__init__.py +++ b/mapgenerator/__init__.py @@ -1,4 +1,4 @@ """ Map Generator is a toolkit that provides easy to use 2D plotting and evaluation functions for Earth Sciences """ -__version__ = "1.0.3" +__version__ = "1.0.4" diff --git a/setup.py b/setup.py index e5b190c..81f7f45 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="mapgenerator", license='Apache 2.0', # Version number (initial): - version="1.0.2", + version="1.0.4", # Application author details: author="Francesco Benincasa", @@ -23,8 +23,10 @@ setup( keywords=['earth sciences', 'weather', 'climate', 'air quality', '2D maps'], - description="""Map Generator is a tool that provides easy to use 2D plotting - functions for Earth sciences datasets.""", + description=( + "Map Generator is a tool that provides easy to use 2D " + "plotting functions for Earth sciences datasets." + ), # long_description=open("README.rst").read(), # long_description_content_type='text/x-rst', -- GitLab