Skip to content

Commit 8ccf263

Browse files
authored
Merge pull request #7 from Healy-Hyperspatial/reorg-setup
Reorg setup
2 parents a37f1f5 + 7bab232 commit 8ccf263

16 files changed

+7
-11
lines changed

.github/workflows/cicd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Install stac-fastapi-mongo
4949
run: |
50-
pip install ./stac_fastapi/mongo[dev,server]
50+
pip install .[dev,server]
5151
5252
- name: Run test suite against Mongo
5353
run: |

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
prune stac_fastapi/tests
2+
prune data_loader

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ run-database-mongo:
5858
.PHONY: pybase-install
5959
pybase-install:
6060
pip install wheel && \
61-
pip install -e ./stac_fastapi/api[dev] && \
62-
pip install -e ./stac_fastapi/types[dev] && \
63-
pip install -e ./stac_fastapi/extensions[dev] && \
6461
pip install -e ./stac_fastapi/core
6562

6663
.PHONY: install-mongo

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pip install stac_fastapi.mongo
1818
To install the classes in your local Python env, run:
1919

2020
```shell
21-
pip install -e 'stac_fastapi/mongo[dev]'
21+
pip install -e .[dev]
2222
```
2323

2424

dockerfiles/Dockerfile.deploy.mongo

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ WORKDIR /app
1212

1313
COPY . /app
1414

15-
RUN pip install --no-cache-dir ./stac_fastapi/mongo[server]
15+
RUN pip install --no-cache-dir .[server]
1616

1717
EXPOSE 8080
1818

dockerfiles/Dockerfile.dev.mongo

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ WORKDIR /app
1515

1616
COPY . /app
1717

18-
RUN pip install --no-cache-dir -e ./stac_fastapi/mongo[dev,server]
18+
RUN pip install --no-cache-dir -e .[dev,server]

stac_fastapi/mongo/setup.py setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
setup(
3131
name="stac-fastapi.mongo",
32+
version="3.0.0",
3233
description="Mongodb stac-fastapi backend.",
3334
long_description=desc,
3435
long_description_content_type="text/markdown",
File renamed without changes.
File renamed without changes.
File renamed without changes.

stac_fastapi/mongo/setup.cfg

-2
This file was deleted.

stac_fastapi/mongo/stac_fastapi/mongo/version.py

-2
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)