From 03c5051a5f5c428c00e81eacb3a23e52f9d3f388 Mon Sep 17 00:00:00 2001 From: Giovanni Allegri Date: Fri, 11 Aug 2023 11:26:34 +0200 Subject: [PATCH] Bump version to 1.0.5 --- importer/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/importer/__init__.py b/importer/__init__.py index 475694ea..c532a974 100644 --- a/importer/__init__.py +++ b/importer/__init__.py @@ -20,7 +20,7 @@ project_dir = os.path.dirname(os.path.abspath(__file__)) -VERSION = (1, 0, 4) +VERSION = (1, 0, 5) __version__ = ".".join([str(i) for i in VERSION]) __author__ = "geosolutions-it" __email__ = "info@geosolutionsgroup.com" diff --git a/setup.cfg b/setup.cfg index 35278ad8..8ec906af 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = geonode-importer -version = 1.0.4 +version = 1.0.5 author = geosolutions-it author_email = info@geosolutionsgroup.com url = https://github.com/geosolutions-it/geonode-importer diff --git a/setup.py b/setup.py index e0761785..213bae14 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ def read_file(path: str): url=importer.__url__, description=importer.__doc__, long_description="A GeoNode 4.0 app that implements a brand new upload/import flow", + long_description_content_type="text/markdown", author=importer.__author__, author_email=importer.__email__, platforms="any",