Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a4417c3

Browse files
tacaswellMeeseeksDev[bot]
authored andcommitted
Backport PR #13941: Add project_urls to setup
1 parent 53bf105 commit a4417c3

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

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="[email protected]",
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)