From 96ad5f0fc3667d277dda0a70c713c62cac2e3459 Mon Sep 17 00:00:00 2001 From: Attila Szakacs Date: Fri, 5 Jul 2024 14:40:25 +0200 Subject: [PATCH] Add "Bug Tracker" and "Documentation" links to pyproject.toml (#826) 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..0ca94fd2 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"]