diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | pyproject.toml | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -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" |