From 735604469311357e53a973f1fbf962bc3779fae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Magimel?= Date: Wed, 19 Jan 2022 11:21:54 +0100 Subject: [PATCH] build(setup): add some project URLs Those URLs can be useful: - the doc link - the source link - the tracker link. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 76a31ad..9e4e2a9 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,11 @@ setup( "auditlog.management.commands", ], url="https://github.com/jazzband/django-auditlog", + project_urls={ + "Documentation": "https://django-auditlog.readthedocs.io", + "Source": "https://github.com/jazzband/django-auditlog", + "Tracker": "https://github.com/jazzband/django-auditlog/issues", + }, license="MIT", author="Jan-Jelle Kester", description="Audit log app for Django",