Skip to content

Commit 8726e57

Browse files
committed
use hyphens
1 parent 01ccf79 commit 8726e57

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@
3737

3838
```bash
3939
# For versions 4.0.0a1 and newer (PEP 625 compliant naming):
40-
pip install stac_fastapi_elasticsearch # Elasticsearch backend
41-
pip install stac_fastapi_opensearch # Opensearch backend
42-
pip install stac_fastapi_core # Core library
40+
pip install stac-fastapi-elasticsearch # Elasticsearch backend
41+
pip install stac-fastapi-opensearch # Opensearch backend
42+
pip install stac-fastapi-core # Core library
4343

4444
# For versions 4.0.0a0 and older:
4545
pip install stac-fastapi.elasticsearch # Elasticsearch backend
4646
pip install stac-fastapi.opensearch # Opensearch backend
4747
pip install stac-fastapi.core # Core library
4848
```
4949

50-
> **Important Note:** Starting with version 4.0.0a1, package names have changed from using periods (e.g., `stac-fastapi.core`) to using underscores (e.g., `stac_fastapi_core`) to comply with PEP 625. Please update your requirements files accordingly.
50+
> **Important Note:** Starting with version 4.0.0a1, package names have changed from using periods (e.g., `stac-fastapi.core`) to using hyphens (e.g., `stac-fastapi-core`) to comply with PEP 625. Please update your requirements files accordingly.
5151
5252
### To install and run via pre-built Docker Images
5353

stac_fastapi/core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
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",

stac_fastapi/elasticsearch/setup.py

Lines changed: 2 additions & 2 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.0a1",
9+
"stac-fastapi-core==4.0.0a1",
1010
"elasticsearch[async]~=8.18.0",
1111
"uvicorn~=0.23.0",
1212
"starlette>=0.35.0,<0.36.0",
@@ -27,7 +27,7 @@
2727
}
2828

2929
setup(
30-
name="stac_fastapi_elasticsearch",
30+
name="stac-fastapi-elasticsearch",
3131
description="An implementation of STAC API based on the FastAPI framework with both Elasticsearch and Opensearch.",
3232
long_description=desc,
3333
long_description_content_type="text/markdown",

stac_fastapi/opensearch/setup.py

Lines changed: 2 additions & 2 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.0a1",
9+
"stac-fastapi-core==4.0.0a1",
1010
"opensearch-py~=2.8.0",
1111
"opensearch-py[async]~=2.8.0",
1212
"uvicorn~=0.23.0",
@@ -28,7 +28,7 @@
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",

0 commit comments

Comments
 (0)