Reorganise
This commit is contained in:
parent
2a2a42fe5d
commit
d3e6d7ac42
12 changed files with 206 additions and 178 deletions
29
pyproject.toml
Normal file
29
pyproject.toml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
[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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue