From 689316d30062d1cd799605b105d4af32f80bb815 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 9caa8ff1..2ad674e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,3 +79,8 @@ disallow_any_decorated = false # It's not useful to annotate each test function as `-> None`. disallow_untyped_defs = false disallow_incomplete_defs = false + +[project.urls] +"Homepage" = "https://github.com/pyca/pynacl/" +"Bug Tracker" = "https://github.com/pyca/pynacl/issues" +"Documentation" = "https://pynacl.readthedocs.io/"