Add uv setup and document expected orthophoto warnings

This commit is contained in:
2025-12-15 20:41:42 +01:00
parent e3ef575a4b
commit abb37f25e2
4 changed files with 91 additions and 4 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[project]
name = "geodata-heightmap-export"
version = "0.1.0"
description = "Heightmap and orthophoto exporters using GDAL for Unity terrains."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"gdal>=3.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = []
force-include = { "export_heightmaps.py" = "export_heightmaps.py", "export_ortho_tiles.py" = "export_ortho_tiles.py" }
[tool.hatch.build.targets.sdist]
include = [
"export_heightmaps.py",
"export_ortho_tiles.py",
"README.md",
"AGENTS.md",
"pyproject.toml",
]