From 567a6e26524095bc1adfd32320fefcd8371c673c Mon Sep 17 00:00:00 2001 From: Attila Szakacs Date: Wed, 26 Jun 2024 11:26:39 +0200 Subject: [PATCH] Add "Bug Tracker" and "Documentation" links to pyproject.toml They show up on the pypi page on the left, making them easier to find. Based on: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#urls Signed-off-by: Attila Szakacs --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e152bd84..491a8fdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,11 @@ docs = [ "sphinx_rtd_theme" ] +[project.urls] +"Homepage" = "https://github.com/pyca/pynacl/" +"Bug Tracker" = "https://github.com/pyca/pynacl/issues" +"Documentation" = "https://pynacl.readthedocs.io/" + [tool.black] line-length = 79 target-version = ["py36"]