29 lines
570 B
TOML
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"]
|