Skip to content

Commit 957e03c

Browse files
committed
update setup files for pep 625
1 parent 790fb7d commit 957e03c

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

stac_fastapi/core/setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,15 @@
2222
]
2323

2424
setup(
25-
name="stac_fastapi.core",
25+
name="stac_fastapi_core",
2626
description="Core library for the Elasticsearch and Opensearch stac-fastapi backends.",
2727
long_description=desc,
2828
long_description_content_type="text/markdown",
29-
python_requires=">=3.8",
29+
python_requires=">=3.9",
3030
classifiers=[
3131
"Intended Audience :: Developers",
3232
"Intended Audience :: Information Technology",
3333
"Intended Audience :: Science/Research",
34-
"Programming Language :: Python :: 3.8",
3534
"Programming Language :: Python :: 3.9",
3635
"Programming Language :: Python :: 3.10",
3736
"Programming Language :: Python :: 3.11",

stac_fastapi/elasticsearch/setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"stac-fastapi.core==4.0.0a0",
9+
"stac_fastapi_core==4.0.0a0",
1010
"elasticsearch[async]==8.11.0",
1111
"elasticsearch-dsl==8.11.0",
1212
"uvicorn",
@@ -28,16 +28,15 @@
2828
}
2929

3030
setup(
31-
name="stac_fastapi.elasticsearch",
31+
name="stac_fastapi_elasticsearch",
3232
description="An implementation of STAC API based on the FastAPI framework with both Elasticsearch and Opensearch.",
3333
long_description=desc,
3434
long_description_content_type="text/markdown",
35-
python_requires=">=3.8",
35+
python_requires=">=3.9",
3636
classifiers=[
3737
"Intended Audience :: Developers",
3838
"Intended Audience :: Information Technology",
3939
"Intended Audience :: Science/Research",
40-
"Programming Language :: Python :: 3.8",
4140
"Programming Language :: Python :: 3.9",
4241
"Programming Language :: Python :: 3.10",
4342
"Programming Language :: Python :: 3.11",

stac_fastapi/opensearch/setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"stac-fastapi.core==4.0.0a0",
9+
"stac_fastapi_core==4.0.0a0",
1010
"opensearch-py==2.4.2",
1111
"opensearch-py[async]==2.4.2",
1212
"uvicorn",
@@ -28,16 +28,15 @@
2828
}
2929

3030
setup(
31-
name="stac_fastapi.opensearch",
31+
name="stac_fastapi_opensearch",
3232
description="Opensearch stac-fastapi backend.",
3333
long_description=desc,
3434
long_description_content_type="text/markdown",
35-
python_requires=">=3.8",
35+
python_requires=">=3.9",
3636
classifiers=[
3737
"Intended Audience :: Developers",
3838
"Intended Audience :: Information Technology",
3939
"Intended Audience :: Science/Research",
40-
"Programming Language :: Python :: 3.8",
4140
"Programming Language :: Python :: 3.9",
4241
"Programming Language :: Python :: 3.10",
4342
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)