From 437c4b57ac50fe934b93d12fe22aed02425d91a7 Mon Sep 17 00:00:00 2001 From: Philip James Date: Wed, 16 May 2018 14:03:30 -0400 Subject: [PATCH] Fixed #29410 -- Added project_urls to setup.py. --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 332800a314..a6838e1534 100644 --- a/setup.py +++ b/setup.py @@ -107,6 +107,12 @@ setup( 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Libraries :: Python Modules', ], + project_urls={ + 'Documentation': 'https://docs.djangoproject.com/', + 'Funding': 'https://www.djangoproject.com/fundraising/', + 'Source': 'https://github.com/django/django', + 'Tracker': 'https://code.djangoproject.com/', + }, )