From d7bf47e77ceb2cdde5b63ccfb75deeb30204d8b2 Mon Sep 17 00:00:00 2001 From: helgeerbe Date: Sun, 20 Oct 2024 16:03:17 +0200 Subject: [PATCH] fix: set long_description_content_type to text/markdown This error breaks the upload to pypi --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8d2db41..dd531cd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( version=version, description="IONOS DNS Authenticator plugin for Certbot", long_description=long_description, - long_description_content_type="text/x-rst", + long_description_content_type="text/markdown", url="https://github.com/helgeerbe/certbot-dns-ionos", author="Helge Erbe", author_email="helge@erbehome.de",