From 70c7bd4bd1586aec5ae92b917bd548e1e5c212f8 Mon Sep 17 00:00:00 2001 From: Jens Vagelpohl Date: Tue, 19 Feb 2019 19:48:59 -0600 Subject: [PATCH] Provide additional links on PyPI with ``project_urls`` in ``setup.py`` --- CHANGES.rst | 3 +++ setup.py | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 4ac871ee6d..61459cbdcd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -44,6 +44,9 @@ Other changes - Specify supported Python versions using ``python_requires`` in setup.py (`#481 `_) +- Provide additional links on PyPI with ``project_urls`` in ``setup.py`` + (`#434 `_) + 4.0b9 (2019-02-09) ------------------ diff --git a/setup.py b/setup.py index 6c28052391..a852416289 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,11 @@ def _read_file(filename): name='Zope', version=version, url='https://zope.readthedocs.io/en/latest/', + project_urls={ + 'Documentation': 'https://zope.readthedocs.io', + 'Issue Tracker': 'https://github.com/zopefoundation/Zope/issues', + 'Sources': 'https://github.com/zopefoundation/Zope', + }, license='ZPL 2.1', description='Zope application server / web framework', author='Zope Foundation and Contributors',