Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed Mar 8, 2024
1 parent 89bb324 commit eb267bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion importer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

project_dir = os.path.dirname(os.path.abspath(__file__))

VERSION = (1, 0, 7)
VERSION = (1, 0, 8)
__version__ = ".".join([str(i) for i in VERSION])
__author__ = "geosolutions-it"
__email__ = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = geonode-importer
version = 1.0.7
version = 1.0.8
author = geosolutions-it
author_email = [email protected]
url = https://github.com/geosolutions-it/geonode-importer
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,19 @@ def read_file(path: str):
version=importer.__version__,
url=importer.__url__,
description=importer.__doc__,
long_description="A GeoNode 4.0 app that implements a brand new upload/import flow",
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",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(),
package_data={"importer": ["templates/*.html", "templates/layers/*.html"]},
Expand Down

0 comments on commit eb267bc

Please sign in to comment.