From 4eccafc5da8d9043a1f8363af25ed145b0cc4a27 Mon Sep 17 00:00:00 2001 From: Andriy Orehov Date: Fri, 15 Nov 2019 14:00:18 +0200 Subject: [PATCH 1/3] Add Documentation and Github URLs for PyPi --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f18a0048..ce3fd5860 100755 --- a/setup.py +++ b/setup.py @@ -859,7 +859,11 @@ try: license="HPND", author="Alex Clark (PIL Fork Author)", author_email="aclark@python-pillow.org", - url="http://python-pillow.org", + url="https://python-pillow.org/", + project_urls={ + "Documentation": "https://pillow.readthedocs.io/en/stable/", + "Source Code": "https://github.com/python-pillow/Pillow", + }, classifiers=[ "Development Status :: 6 - Mature", "License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)", # noqa: E501 From 38ea1c6e03496b0d7a63848f471a39e57a116bf4 Mon Sep 17 00:00:00 2001 From: Andriy Orehov Date: Fri, 15 Nov 2019 18:25:20 +0200 Subject: [PATCH 2/3] use the more common option change docs url --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ce3fd5860..89641078e 100755 --- a/setup.py +++ b/setup.py @@ -861,8 +861,8 @@ try: author_email="aclark@python-pillow.org", url="https://python-pillow.org/", project_urls={ - "Documentation": "https://pillow.readthedocs.io/en/stable/", - "Source Code": "https://github.com/python-pillow/Pillow", + "Documentation": "https://pillow.readthedocs.io", + "Source": "https://github.com/python-pillow/Pillow", }, classifiers=[ "Development Status :: 6 - Mature", From defe8389177e181dbd3ec96eaed544bec077ac16 Mon Sep 17 00:00:00 2001 From: Andriy Orehov Date: Fri, 15 Nov 2019 22:48:26 +0200 Subject: [PATCH 3/3] add in a funding link for PyPi --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 89641078e..339132ff3 100755 --- a/setup.py +++ b/setup.py @@ -859,10 +859,11 @@ try: license="HPND", author="Alex Clark (PIL Fork Author)", author_email="aclark@python-pillow.org", - url="https://python-pillow.org/", + url="https://python-pillow.org", project_urls={ "Documentation": "https://pillow.readthedocs.io", "Source": "https://github.com/python-pillow/Pillow", + "Funding": "https://tidelift.com/subscription/pkg/pypi-pillow", }, classifiers=[ "Development Status :: 6 - Mature",