blob: 56ff25568b5f4ed228a7071a7f21035f1859977e (
plain) (
tree)
|
|
[project]
name = "osm_where"
description = "Get geo: URI for given locality from OSM"
version = "0.2.2"
requires-python = ">=3.6"
authors = [
{ name = "Matěj Cepl", email = "mcepl@cepl.eu" }
]
license = { file="LICENSE" }
readme = "README.md"
dependencies = [
"OSMPythonTools",
"pyxdg",
"shapely",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Environment :: Console",
]
[project.scripts]
osm_where = "osm_where:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
|