8000 Backport PR #13941 on branch v3.1.x (Add project_urls to setup) by meeseeksmachine · Pull Request #13955 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Backport PR #13941 on branch v3.1.x (Add project_urls to setup) #13955

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
0