From 8605c399ce7a38a98a8ce311db29795bbece5134 Mon Sep 17 00:00:00 2001 From: Alex Forrence Date: Fri, 17 Mar 2023 14:58:07 -0400 Subject: [PATCH] Python: Add a long_description to appease the distribution-publishing tools. Unclear whether this was intentional on the python tooling side, but twine (the tool that uploads packages to PyPI) now fails if the long_description is not set. See https://github.com/pypa/twine/issues/960 for details. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 2e4d978a53..3841a1d4e5 100644 --- a/setup.py +++ b/setup.py @@ -309,6 +309,7 @@ def get_basesources(name, osname): setup (name = 'psychtoolbox', version = version, description = 'Pieces of Psychtoolbox-3 ported to CPython.', + long_description = 'Pieces of Psychtoolbox-3 ported to CPython.', author = 'Mario Kleiner', author_email = 'mario.kleiner.de@gmail.com', url = 'http://psychtoolbox.org',