Skip to content

Commit 801494e

Browse files
authoredNov 28, 2024··
update build backend and others (#1042)
* update build backend and others * update changelog
1 parent 820de8e commit 801494e

File tree

11 files changed

+126
-15
lines changed

11 files changed

+126
-15
lines changed
 

‎CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## 0.19.2 (2024-11-28)
44

5+
### Misc
6+
7+
* Update package build backend from `pdm-pep517` to `pdm-backend` (https://backend.pdm-project.org/#migrate-from-pdm-pep517)
8+
9+
* Update namespace package from using `.` to `-` as separator to comply with PEP-625 (https://peps.python.org/pep-0625/)
10+
511
### titiler.mosaic
612

713
* Define variable (`MOSAIC_CONCURRENCY` and `MOSAIC_STRICT_ZOOM`) from env-variable outside endpoint code

‎src/titiler/application/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Development Seed
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎src/titiler/application/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "titiler.application"
2+
name = "titiler-application"
33
description = "A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL."
44
readme = "README.md"
55
requires-python = ">=3.8"
@@ -59,8 +59,8 @@ Source = "https://github.com/developmentseed/titiler"
5959
Changelog = "https://developmentseed.org/titiler/release-notes/"
6060

6161
[build-system]
62-
requires = ["pdm-pep517"]
63-
build-backend = "pdm.pep517.api"
62+
requires = ["pdm-backend"]
63+
build-backend = "pdm.backend"
6464

6565
[tool.pdm.version]
6666
source = "file"

‎src/titiler/core/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Development Seed
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎src/titiler/core/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "titiler.core"
2+
name = "titiler-core"
33
description = "A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL."
44
readme = "README.md"
55
requires-python = ">=3.8"
@@ -59,8 +59,8 @@ Source = "https://github.com/developmentseed/titiler"
5959
Changelog = "https://developmentseed.org/titiler/release-notes/"
6060

6161
[build-system]
62-
requires = ["pdm-pep517"]
63-
build-backend = "pdm.pep517.api"
62+
requires = ["pdm-backend"]
63+
build-backend = "pdm.backend"
6464

6565
[tool.pdm.version]
6666
source = "file"

‎src/titiler/extensions/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Development Seed
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎src/titiler/extensions/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "titiler.extensions"
2+
name = "titiler-extensions"
33
description = "Extensions for TiTiler Factories."
44
readme = "README.md"
55
requires-python = ">=3.8"
@@ -57,8 +57,8 @@ Source = "https://github.com/developmentseed/titiler"
5757
Changelog = "https://developmentseed.org/titiler/release-notes/"
5858

5959
[build-system]
60-
requires = ["pdm-pep517"]
61-
build-backend = "pdm.pep517.api"
60+
requires = ["pdm-backend"]
61+
build-backend = "pdm.backend"
6262

6363
[tool.pdm.version]
6464
source = "file"

‎src/titiler/mosaic/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Development Seed
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎src/titiler/mosaic/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "titiler.mosaic"
2+
name = "titiler-mosaic"
33
description = "cogeo-mosaic (MosaicJSON) plugin for TiTiler."
44
readme = "README.md"
55
requires-python = ">=3.8"
@@ -51,8 +51,8 @@ Source = "https://github.com/developmentseed/titiler"
5151
Changelog = "https://developmentseed.org/titiler/release-notes/"
5252

5353
[build-system]
54-
requires = ["pdm-pep517"]
55-
build-backend = "pdm.pep517.api"
54+
requires = ["pdm-backend"]
55+
build-backend = "pdm.backend"
5656

5757
[tool.pdm.version]
5858
source = "file"

‎src/titiler/xarray/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Development Seed
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎src/titiler/xarray/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "titiler.xarray"
2+
name = "titiler-xarray"
33
description = "Xarray plugin for TiTiler."
44
readme = "README.md"
55
requires-python = ">=3.8"
@@ -77,8 +77,8 @@ Source = "https://github.com/developmentseed/titiler"
7777
Changelog = "https://developmentseed.org/titiler/release-notes/"
7878

7979
[build-system]
80-
requires = ["pdm-pep517"]
81-
build-backend = "pdm.pep517.api"
80+
requires = ["pdm-backend"]
81+
build-backend = "pdm.backend"
8282

8383
[tool.pdm.version]
8484
source = "file"

0 commit comments

Comments
 (0)