8000 Merge pull request #13955 from meeseeksmachine/auto-backport-of-pr-13… · matplotlib/matplotlib@2cf4c8b · GitHub
[go: up one dir, main page]

Skip to content

Commit 2cf4c8b

Browse files
authored
Merge pull request #13955 from meeseeksmachine/auto-backport-of-pr-13941-on-v3.1.x
Backport PR #13941 on branch v3.1.x (Add project_urls to setup)
2 parents 5c9d362 + a4417c3 commit 2cf4c8b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def run(self):
265265
description="Python plotting package",
266266
author="John D. Hunter, Michael Droettboom",
267267
author_email="matplotlib-users@python.org",
268-
url="http://matplotlib.org",
268+
url="https://matplotlib.org",
269269
long_description="""
270270
Matplotlib strives to produce publication quality 2D graphics
271271
for interactive graphing, scientific publishing, user interface
@@ -281,7 +281,12 @@ def run(self):
281281
package_dir=package_dir,
282282
package_data=package_data,
283283
classifiers=classifiers,
284-
download_url="http://matplotlib.org/users/installing.html",
284+
download_url="https://matplotlib.org/users/installing.html",
285+
project_urls={
286+
'Bug Tracker': 'https://github.com/matplotlib/matplotlib/issues',
287+
'Documentation': 'https://matplotlib.org/contents.html',
288+
'Source Code': 'https://github.com/matplotlib/matplotlib'
289+
},
285290

286291
python_requires='>=3.6',
287292
# List third-party Python packages that we require

0 commit comments

Comments
 (0)
0