aboutsummaryrefslogblamecommitdiffstats
path: root/pyproject.toml
blob: c63ec7bb9a25d5ba548f2ff50926f0171fc8d6ef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                        
            














                                             
[project]
name = "osm_where"
description = "Get geo: URI for given locality from OSM"
version = "0.1.0"
requires-python = ">=3.6"
authors = [
    { name = "Matěj Cepl", email = "mcepl@cepl.eu" }
]
license = { file="LICENSE" }
readme = "README.md"
dependencies = [
    "OSMPythonTools",
    "pyxdg",
]
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"