stac-fastapi-elasticsearch 6.7.3__tar.gz → 6.7.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stac_fastapi_elasticsearch
3
- Version: 6.7.3
3
+ Version: 6.7.5
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
@@ -9,16 +9,14 @@ Classifier: Intended Audience :: Developers
9
9
  Classifier: Intended Audience :: Information Technology
10
10
  Classifier: Intended Audience :: Science/Research
11
11
  Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3.9
13
- Classifier: Programming Language :: Python :: 3.10
14
12
  Classifier: Programming Language :: Python :: 3.11
15
13
  Classifier: Programming Language :: Python :: 3.12
16
14
  Classifier: Programming Language :: Python :: 3.13
17
15
  Classifier: Programming Language :: Python :: 3.14
18
- Requires-Python: >=3.9
16
+ Requires-Python: >=3.11
19
17
  Requires-Dist: elasticsearch[async]~=8.19.1
20
- Requires-Dist: sfeos-helpers==6.7.3
21
- Requires-Dist: stac-fastapi-core==6.7.3
18
+ Requires-Dist: sfeos-helpers==6.7.5
19
+ Requires-Dist: stac-fastapi-core==6.7.5
22
20
  Requires-Dist: starlette<0.36.0,>=0.35.0
23
21
  Requires-Dist: uvicorn~=0.23.0
24
22
  Provides-Extra: dev
@@ -28,10 +26,17 @@ Requires-Dist: pre-commit~=3.0.0; extra == 'dev'
28
26
  Requires-Dist: pytest-asyncio~=0.21.0; extra == 'dev'
29
27
  Requires-Dist: pytest-cov~=4.0.0; extra == 'dev'
30
28
  Requires-Dist: pytest~=8.0; extra == 'dev'
29
+ Requires-Dist: redis~=6.4.0; extra == 'dev'
30
+ Requires-Dist: retry~=0.9.2; extra == 'dev'
31
+ Requires-Dist: stac-fastapi-core[redis]==6.7.5; extra == 'dev'
31
32
  Provides-Extra: docs
32
33
  Requires-Dist: mkdocs-material~=9.0.0; extra == 'docs'
33
34
  Requires-Dist: mkdocs~=1.4.0; extra == 'docs'
34
35
  Requires-Dist: pdocs~=1.2.0; extra == 'docs'
36
+ Requires-Dist: redis~=6.4.0; extra == 'docs'
37
+ Requires-Dist: retry~=0.9.2; extra == 'docs'
38
+ Provides-Extra: redis
39
+ Requires-Dist: stac-fastapi-core[redis]==6.7.5; extra == 'redis'
35
40
  Provides-Extra: server
36
41
  Requires-Dist: uvicorn[standard]~=0.23.0; extra == 'server'
37
42
  Description-Content-Type: text/markdown
@@ -6,15 +6,13 @@ build-backend = "hatchling.build"
6
6
  name = "stac_fastapi_elasticsearch"
7
7
  description = "An implementation of STAC API based on the FastAPI framework with Elasticsearch."
8
8
  readme = "README.md"
9
- requires-python = ">=3.9"
9
+ requires-python = ">=3.11"
10
10
  license = {text = "MIT"}
11
11
  authors = []
12
12
  classifiers = [
13
13
  "Intended Audience :: Developers",
14
14
  "Intended Audience :: Information Technology",
15
15
  "Intended Audience :: Science/Research",
16
- "Programming Language :: Python :: 3.9",
17
- "Programming Language :: Python :: 3.10",
18
16
  "Programming Language :: Python :: 3.11",
19
17
  "Programming Language :: Python :: 3.12",
20
18
  "Programming Language :: Python :: 3.13",
@@ -30,8 +28,8 @@ keywords = [
30
28
  ]
31
29
  dynamic = ["version"]
32
30
  dependencies = [
33
- "stac-fastapi-core==6.7.3",
34
- "sfeos-helpers==6.7.3",
31
+ "stac-fastapi-core==6.7.5",
32
+ "sfeos-helpers==6.7.5",
35
33
  "elasticsearch[async]~=8.19.1",
36
34
  "uvicorn~=0.23.0",
37
35
  "starlette>=0.35.0,<0.36.0",
@@ -48,11 +46,19 @@ dev = [
48
46
  "pre-commit~=3.0.0",
49
47
  "ciso8601~=2.3.0",
50
48
  "httpx>=0.24.0,<0.28.0",
49
+ "redis~=6.4.0",
50
+ "retry~=0.9.2",
51
+ "stac-fastapi-core[redis]==6.7.5",
51
52
  ]
52
53
  docs = [
53
54
  "mkdocs~=1.4.0",
54
55
  "mkdocs-material~=9.0.0",
55
56
  "pdocs~=1.2.0",
57
+ "redis~=6.4.0",
58
+ "retry~=0.9.2",
59
+ ]
60
+ redis = [
61
+ "stac-fastapi-core[redis]==6.7.5",
56
62
  ]
57
63
  server = [
58
64
  "uvicorn[standard]~=0.23.0",
@@ -1,2 +1,2 @@
1
1
  """library version."""
2
- __version__ = "6.7.3"
2
+ __version__ = "6.7.5"