openstreetmap-tools/pyproject.toml
2026-02-27 14:27:38 +00:00

29 lines
570 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "osm-geojson"
version = "0.1.0"
description = "Fetch OSM public transport route relations and export as GeoJSON"
license = {text = "MIT"}
authors = [{name = "Edward Betts"}]
requires-python = ">=3.11"
dependencies = [
"click",
"requests",
]
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"responses",
"types-requests",
]
[project.scripts]
osm-pt-geojson = "osm_geojson.pt.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]