From 0ad5231048c7a7eca5adfd3b82cc5a04938005ae Mon Sep 17 00:00:00 2001 From: Xavier Nogueira Date: Tue, 20 Feb 2024 19:43:12 -0500 Subject: [PATCH 1/3] chore: :truck: moving to non-flat repo structure --- {geoparquet_pydantic => src/geoparquet_pydantic}/__init__.py | 0 {geoparquet_pydantic => src/geoparquet_pydantic}/convert.py | 0 {geoparquet_pydantic => src/geoparquet_pydantic}/schemas.py | 0 {geoparquet_pydantic => src/geoparquet_pydantic}/validate.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename {geoparquet_pydantic => src/geoparquet_pydantic}/__init__.py (100%) rename {geoparquet_pydantic => src/geoparquet_pydantic}/convert.py (100%) rename {geoparquet_pydantic => src/geoparquet_pydantic}/schemas.py (100%) rename {geoparquet_pydantic => src/geoparquet_pydantic}/validate.py (100%) diff --git a/geoparquet_pydantic/__init__.py b/src/geoparquet_pydantic/__init__.py similarity index 100% rename from geoparquet_pydantic/__init__.py rename to src/geoparquet_pydantic/__init__.py diff --git a/geoparquet_pydantic/convert.py b/src/geoparquet_pydantic/convert.py similarity index 100% rename from geoparquet_pydantic/convert.py rename to src/geoparquet_pydantic/convert.py diff --git a/geoparquet_pydantic/schemas.py b/src/geoparquet_pydantic/schemas.py similarity index 100% rename from geoparquet_pydantic/schemas.py rename to src/geoparquet_pydantic/schemas.py diff --git a/geoparquet_pydantic/validate.py b/src/geoparquet_pydantic/validate.py similarity index 100% rename from geoparquet_pydantic/validate.py rename to src/geoparquet_pydantic/validate.py From 0cf9ac6463be5c8180bb219f26e396797317a3cf Mon Sep 17 00:00:00 2001 From: Xavier Nogueira Date: Tue, 20 Feb 2024 19:44:20 -0500 Subject: [PATCH 2/3] chore: :pencil2: moving to non-flat repo structure --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 792289c..550cda0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ dynamic = [ ] [tool.setuptools.packages.find] +where = ["src"] include = ["geoparquet_pydantic*"] [tool.setuptools.dynamic] From 99de29ebb7c818c8d5dae20d7b3c9af1199f8347 Mon Sep 17 00:00:00 2001 From: Xavier Nogueira Date: Tue, 20 Feb 2024 19:45:37 -0500 Subject: [PATCH 3/3] chore: :pencil2: update tests.yml --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 484955a..c36e3b3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,7 +34,7 @@ jobs: - name: Install the library run: | - pip install . + pip install -e . pip list - name: Run tests