From 4477d032ac12efc1a9309500aceac263bb104619 Mon Sep 17 00:00:00 2001 From: Philip James Date: Wed, 16 May 2018 14:03:30 -0400 Subject: [PATCH] [2.0.x] Fixed #29410 -- Added project_urls to setup.py. Backport of 437c4b57ac50fe934b93d12fe22aed02425d91a7 from master --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index e94238f109..65d3eb93fd 100644 --- a/setup.py +++ b/setup.py @@ -108,6 +108,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/', + }, )