From 0cc7065a35ef4e39cfd6b2b8f0010e90e5940bf7 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 12 Apr 2019 10:03:31 -0700 Subject: [PATCH 1/2] Add project_urls to setup These are used by PyPI and other services. --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 12ec390e6116..9d6bf46b62f4 100644 --- a/setup.py +++ b/setup.py @@ -267,7 +267,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 @@ -283,7 +283,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='>={}'.format('.'.join(str(n) for n in min_version)), # List third-party Python packages that we require From adfd98db577b6eacc1c343675e72f06cfaa8cce0 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Sun, 14 Apr 2019 13:21:35 -0400 Subject: [PATCH 2/2] BLD: remove trailing slash --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9d6bf46b62f4..5edbc83b8f9f 100644 --- a/setup.py +++ b/setup.py @@ -267,7 +267,7 @@ def run(self): description="Python plotting package", author="John D. Hunter, Michael Droettboom", author_email="matplotlib-users@python.org", - url="https://matplotlib.org/", + url="https://matplotlib.org", long_description=""" Matplotlib strives to produce publication quality 2D graphics for interactive graphing, scientific publishing, user interface