summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip James <pjj@philipjohnjames.com>2018-05-16 14:03:30 -0400
committerTim Graham <timograham@gmail.com>2018-05-16 22:30:59 -0400
commit4477d032ac12efc1a9309500aceac263bb104619 (patch)
tree7b6c5adf86476f41596af4020cb0387850afd035
parentcffe9a2497888b38c917f00061ea3982423c9e95 (diff)
[2.0.x] Fixed #29410 -- Added project_urls to setup.py.
Backport of 437c4b57ac50fe934b93d12fe22aed02425d91a7 from master
-rw-r--r--setup.py6
1 files changed, 6 insertions, 0 deletions
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/',
+ },
)