From 72d21dcaa7811a5405538cf3624417c614a8c831 Mon Sep 17 00:00:00 2001 From: James B Date: Wed, 13 Nov 2024 15:42:59 +0000 Subject: [PATCH] setup.py: Set long_description and type This was causing a pypi deploy error, `long_description` has syntax errors in markup and would not be rendered on PyPI. No content rendered from RST source. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index afbb720..07e3c28 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,8 @@ scripts=['manage.py'], url='https://github.com/OpenDataServices/lib-cove-web', description='', + long_description="", + long_description_content_type="text/plain", classifiers=[ 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', ],