Skip to content

Commit 3d9e43e

Browse files
committed
underscores for pypi
1 parent 8726e57 commit 3d9e43e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ 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 hyphens (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. The internal package structure uses underscores, but users should install with hyphens as shown above. 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)