Files
GeoData/pyproject.toml
s0wlz (Matthias Puchstein) 3aed6333bc Fix tree warp and CityJSON handling
2025-12-20 00:00:29 +01:00

27 lines
662 B
TOML

[project]
name = "geodata-toolkit"
version = "0.1.0"
description = "Heightmap and orthophoto exporters using GDAL for Unity terrains."
readme = "README.md"
requires-python = ">=3.9,<3.11"
dependencies = ["gdal>=3.4", "cjio[export,reproject]>=0.9"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["geodata_pipeline"]
force-include = { "geodata_to_unity.py" = "geodata_to_unity.py" }
[tool.hatch.build.targets.sdist]
include = [
"geodata_to_unity.py",
"geodata_pipeline/",
"geodata_config.example.json",
"scripts/",
"README.md",
"AGENTS.md",
"pyproject.toml",
]