aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 89ddfbccaa03550a2ad9e5e2d9081936dc698936 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[project]
name = "osm_where"
description = "Get geo: URI for given locality from OSM"
version = "0.2.3"
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"

[project.urls]
homepage = "https://sr.ht/~mcepl/osm_where/"
repository = "https://git.sr.ht/~mcepl/osm_where"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"