-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into rework_store_search
- Loading branch information
Showing
13 changed files
with
126 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Byte-compiled / optimized / DLL files | ||
**/__pycache__/ | ||
**/.pytest_cache/ | ||
|
||
# Unit test / coverage reports | ||
**/htmlcov/ | ||
**/.tox/ | ||
**/.coverage | ||
**/.coverage.* | ||
**/.cache | ||
**/nosetests.xml | ||
**/coverage.xml | ||
**/*.cover | ||
**/.hypothesis | ||
|
||
# Translations | ||
**/*.mo | ||
**/*.pot | ||
|
||
# Django stuff: | ||
**/*.log | ||
|
||
# Sphinx documentation | ||
**/docs/_build/ | ||
|
||
# PyBuilder | ||
**/target/ | ||
**/.idea/ | ||
|
||
# iPython Notebook | ||
**/.ipynb_checkpoints | ||
|
||
# Mac OS X | ||
**/.DS_Store | ||
|
||
# Environment-specific templates | ||
**/*.env.html | ||
**/settings.env.py | ||
|
||
# Ignore vscode | ||
**/.vscode | ||
|
||
.dockerignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ htmlcov/ | |
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
*.cover | ||
.hypothesis | ||
|
||
# Translations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ | |
long_description_content_type="text/markdown", | ||
use_scm_version=True, | ||
setup_requires=["setuptools_scm"], | ||
python_requires=">=3.7", | ||
python_requires=">=3.9", | ||
url="https://github.com/opendatacube/datacube-explorer", | ||
author="Geoscience Australia", | ||
author_email="[email protected]", | ||
|
@@ -64,15 +64,17 @@ | |
classifiers=[ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: OS Independent", | ||
], | ||
include_package_data=True, | ||
install_requires=[ | ||
"cachetools", | ||
"click", | ||
"datacube>=1.8.10", | ||
"datacube>=1.8.18", | ||
"eodatasets3>=0.30.1", | ||
"fiona", | ||
"flask", | ||
|