diff --git a/CHANGES.rst b/CHANGES.rst index bb806c2..d7406ee 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -19,6 +19,7 @@ Minor Changes ^^^^^^^^^^^^^ - build: use standard SPDX string name for project license +- build: move links to 'project.urls' table in 'pyproject.toml' diff --git a/pyproject.toml b/pyproject.toml index 7c8376e..bf8af34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ authors = [ maintainers = [ {name = "Ricchi Machado", email = "rmlibre@riseup.net"} ] -urls = {"Homepage" = "https://twitter.com/aiootp", "Download" = "https://pypi.org/project/aiootp", "Source" = "https://github.com/rmlibre/aiootp", "Repository" = "https://github.com/rmlibre/aiootp.git", "Tracker" = "https://github.com/rmlibre/aiootp/issues", "Changelog" = "https://github.com/rmlibre/aiootp/blob/main/CHANGES.rst", "Documentation" = "https://github.com/rmlibre/aiootp/blob/main/README.rst"} classifiers = [ "Development Status :: 4 - Beta", "Framework :: AsyncIO", @@ -259,6 +258,16 @@ dev = [ ] +[project.urls] +Homepage = "https://twitter.com/aiootp" +Download = "https://pypi.org/project/aiootp" +Source = "https://github.com/rmlibre/aiootp" +Repository = "https://github.com/rmlibre/aiootp.git" +Tracker = "https://github.com/rmlibre/aiootp/issues" +Changelog = "https://github.com/rmlibre/aiootp/blob/main/CHANGES.rst" +Documentation = "https://github.com/rmlibre/aiootp/blob/main/README.rst" + + [tool.setuptools] include-package-data = true license-files = ["LICENSE"]