From a4417c38ba3c8501032794bf5309d966ca14b816 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Sun, 14 Apr 2019 14:42:23 -0400 Subject: [PATCH] Backport PR #13941: Add project_urls to setup --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 776437597b26..d5ff91c43def 100644 --- a/setup.py +++ b/setup.py @@ -265,7 +265,7 @@ def run(self): description="Python plotting package", author="John D. Hunter, Michael Droettboom", author_email="matplotlib-users@python.org", - url="http://matplotlib.org", + url="https://matplotlib.org", long_description=""" Matplotlib strives to produce publication quality 2D graphics for interactive graphing, scientific publishing, user interface @@ -281,7 +281,12 @@ def run(self): package_dir=package_dir, package_data=package_data, classifiers=classifiers, - download_url="http://matplotlib.org/users/installing.html", + download_url="https://matplotlib.org/users/installing.html", + project_urls={ + 'Bug Tracker': 'https://github.com/matplotlib/matplotlib/issues', + 'Documentation': 'https://matplotlib.org/contents.html', + 'Source Code': 'https://github.com/matplotlib/matplotlib' + }, python_requires='>=3.6', # List third-party Python packages that we require