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

Skip to content

Commit b52b160

Browse files
authored
Merge pull request #13941 from jarrodmillman/project_urls
BLD: Add project_urls to setup.py
2 parents 93519e0 + adfd98d commit b52b160

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
@@ -267,7 +267,7 @@ def run(self):
267267
description="Python plotting package",
268268
author="John D. Hunter, Michael Droettboom",
269269
author_email="[email protected]",
270-
url="http://matplotlib.org",
270+
url="https://matplotlib.org",
271271
long_description="""
272272
Matplotlib strives to produce publication quality 2D graphics
273273
for interactive graphing, scientific publishing, user interface
@@ -283,7 +283,12 @@ def run(self):
283283
package_dir=package_dir,
284284
package_data=package_data,
285285
classifiers=classifiers,
286-
download_url="http://matplotlib.org/users/installing.html",
286+
download_url="https://matplotlib.org/users/installing.html",
287+
project_urls={
288+
'Bug Tracker': 'https://github.com/matplotlib/matplotlib/issues',
289+
'Documentation': 'https://matplotlib.org/contents.html',
290+
'Source Code': 'https://github.com/matplotlib/matplotlib'
291+
},
287292

288293
python_requires='>={}'.format('.'.join(str(n) for n in min_version)),
289294
# List third-party Python packages that we require

0 commit comments

Comments
 (0)