aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-01-21 13:54:26 +0100
committerMatěj Cepl <mcepl@cepl.eu>2023-01-21 13:57:57 +0100
commit63ba479473c0f804cb3879bf66e4f49766df7797 (patch)
tree5690ccc6f755fb9ad8fdd24fc4d6187ea1a3ff19
parent139ed5ab4c9af4382653bf4f52103ea44c317f84 (diff)
downloadosm_where-63ba479473c0f804cb3879bf66e4f49766df7797.tar.gz
Correct project metadata in pyproject.toml.0.2.3
-rw-r--r--.gitignore2
-rw-r--r--pyproject.toml6
2 files changed, 6 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index c01e90b..0efbe71 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
cache/
*.egg-info
build/
-*.whl
+*.whl*
*.pyc
diff --git a/pyproject.toml b/pyproject.toml
index 56ff255..89ddfbc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[project]
name = "osm_where"
description = "Get geo: URI for given locality from OSM"
-version = "0.2.2"
+version = "0.2.3"
requires-python = ">=3.6"
authors = [
{ name = "Matěj Cepl", email = "mcepl@cepl.eu" }
@@ -24,6 +24,10 @@ classifiers = [
[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"