Skip to content

Commit 799c447

Browse files
committed
gump to 1.0.1
1 parent d3703f6 commit 799c447

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

importer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

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

23-
VERSION = (0, 0, 1)
23+
VERSION = (1, 0, 1)
2424
__version__ = ".".join([str(i) for i in VERSION])
2525
__author__ = "geosolutions-it"
2626
__email__ = "info@geosolutionsgroup.com"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = geonode-importer
3-
version = 0.0.1
3+
version = 1.0.1
44
author = geosolutions-it
55
author_email = info@geosolutionsgroup.com
66
url = https://github.com/geosolutions-it/geonode-importer

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ def read_file(path: str):
1717
version=importer.__version__,
1818
url=importer.__url__,
1919
description=importer.__doc__,
20-
long_description=read_file("README.md"),
20+
long_description="A GeoNode 4.0 app that implements a brand new upload/import flow",
2121
author=importer.__author__,
2222
author_email=importer.__email__,
2323
platforms="any",
2424
classifiers=[
2525
"Environment :: Web Environment",
2626
"Framework :: Django :: 3.0",
27-
"License :: OSI Approved :: GNU General Public License",
2827
"Programming Language :: Python",
2928
"Programming Language :: Python :: 3.8",
3029
],
@@ -35,6 +34,6 @@ def read_file(path: str):
3534
"setuptools>=59",
3635
"gdal==3.2.2.1",
3736
"pdok-geopackage-validator==0.8.0",
38-
"dynamic_models @ git+https://github.com/rvinzent/django-dynamic-models.git@main#egg=dynamic_models",
37+
"geonode-django-dynamic-model==0.4.0",
3938
],
4039
)

0 commit comments

Comments
 (0)