stac-fastapi-elasticsearch 6.8.0__tar.gz → 6.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/PKG-INFO +5 -5
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/pyproject.toml +4 -4
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/stac_fastapi/elasticsearch/app.py +1 -1
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/stac_fastapi/elasticsearch/version.py +1 -1
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/.gitignore +0 -0
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/README.md +0 -0
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/pytest.ini +0 -0
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/stac_fastapi/elasticsearch/__init__.py +0 -0
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/stac_fastapi/elasticsearch/config.py +0 -0
- {stac_fastapi_elasticsearch-6.8.0 → stac_fastapi_elasticsearch-6.9.0}/stac_fastapi/elasticsearch/database_logic.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stac_fastapi_elasticsearch
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.9.0
|
|
4
4
|
Summary: An implementation of STAC API based on the FastAPI framework with Elasticsearch.
|
|
5
5
|
Project-URL: Homepage, https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch
|
|
6
6
|
License: MIT
|
|
@@ -15,8 +15,8 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.14
|
|
16
16
|
Requires-Python: >=3.11
|
|
17
17
|
Requires-Dist: elasticsearch[async]~=8.19.1
|
|
18
|
-
Requires-Dist: sfeos-helpers==6.
|
|
19
|
-
Requires-Dist: stac-fastapi-core==6.
|
|
18
|
+
Requires-Dist: sfeos-helpers==6.9.0
|
|
19
|
+
Requires-Dist: stac-fastapi-core==6.9.0
|
|
20
20
|
Requires-Dist: starlette<0.36.0,>=0.35.0
|
|
21
21
|
Requires-Dist: uvicorn~=0.23.0
|
|
22
22
|
Provides-Extra: dev
|
|
@@ -28,7 +28,7 @@ Requires-Dist: pytest-cov~=4.0.0; extra == 'dev'
|
|
|
28
28
|
Requires-Dist: pytest~=8.0; extra == 'dev'
|
|
29
29
|
Requires-Dist: redis~=6.4.0; extra == 'dev'
|
|
30
30
|
Requires-Dist: retry~=0.9.2; extra == 'dev'
|
|
31
|
-
Requires-Dist: stac-fastapi-core[redis]==6.
|
|
31
|
+
Requires-Dist: stac-fastapi-core[redis]==6.9.0; extra == 'dev'
|
|
32
32
|
Provides-Extra: docs
|
|
33
33
|
Requires-Dist: mkdocs-material~=9.0.0; extra == 'docs'
|
|
34
34
|
Requires-Dist: mkdocs~=1.4.0; extra == 'docs'
|
|
@@ -36,7 +36,7 @@ Requires-Dist: pdocs~=1.2.0; extra == 'docs'
|
|
|
36
36
|
Requires-Dist: redis~=6.4.0; extra == 'docs'
|
|
37
37
|
Requires-Dist: retry~=0.9.2; extra == 'docs'
|
|
38
38
|
Provides-Extra: redis
|
|
39
|
-
Requires-Dist: stac-fastapi-core[redis]==6.
|
|
39
|
+
Requires-Dist: stac-fastapi-core[redis]==6.9.0; extra == 'redis'
|
|
40
40
|
Provides-Extra: server
|
|
41
41
|
Requires-Dist: uvicorn[standard]~=0.23.0; extra == 'server'
|
|
42
42
|
Description-Content-Type: text/markdown
|
|
@@ -28,8 +28,8 @@ keywords = [
|
|
|
28
28
|
]
|
|
29
29
|
dynamic = ["version"]
|
|
30
30
|
dependencies = [
|
|
31
|
-
"stac-fastapi-core==6.
|
|
32
|
-
"sfeos-helpers==6.
|
|
31
|
+
"stac-fastapi-core==6.9.0",
|
|
32
|
+
"sfeos-helpers==6.9.0",
|
|
33
33
|
"elasticsearch[async]~=8.19.1",
|
|
34
34
|
"uvicorn~=0.23.0",
|
|
35
35
|
"starlette>=0.35.0,<0.36.0",
|
|
@@ -48,7 +48,7 @@ dev = [
|
|
|
48
48
|
"httpx>=0.24.0,<0.28.0",
|
|
49
49
|
"redis~=6.4.0",
|
|
50
50
|
"retry~=0.9.2",
|
|
51
|
-
"stac-fastapi-core[redis]==6.
|
|
51
|
+
"stac-fastapi-core[redis]==6.9.0",
|
|
52
52
|
]
|
|
53
53
|
docs = [
|
|
54
54
|
"mkdocs~=1.4.0",
|
|
@@ -58,7 +58,7 @@ docs = [
|
|
|
58
58
|
"retry~=0.9.2",
|
|
59
59
|
]
|
|
60
60
|
redis = [
|
|
61
|
-
"stac-fastapi-core[redis]==6.
|
|
61
|
+
"stac-fastapi-core[redis]==6.9.0",
|
|
62
62
|
]
|
|
63
63
|
server = [
|
|
64
64
|
"uvicorn[standard]~=0.23.0",
|
|
@@ -244,7 +244,7 @@ items_get_request_model = create_request_model(
|
|
|
244
244
|
app_config = {
|
|
245
245
|
"title": os.getenv("STAC_FASTAPI_TITLE", "stac-fastapi-elasticsearch"),
|
|
246
246
|
"description": os.getenv("STAC_FASTAPI_DESCRIPTION", "stac-fastapi-elasticsearch"),
|
|
247
|
-
"api_version": os.getenv("STAC_FASTAPI_VERSION", "6.
|
|
247
|
+
"api_version": os.getenv("STAC_FASTAPI_VERSION", "6.9.0"),
|
|
248
248
|
"settings": settings,
|
|
249
249
|
"extensions": extensions,
|
|
250
250
|
"client": CoreClient(
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""library version."""
|
|
2
|
-
__version__ = "6.
|
|
2
|
+
__version__ = "6.9.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|