From 6bfeed0c8d3fc5e09611e9b56e18905272178355 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Thu, 7 Apr 2022 22:05:54 +0100 Subject: [PATCH] fix: The description content type for setuptools needs to be rst to match the readme --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f531aa48..3b6c90a6 100644 --- a/setup.py +++ b/setup.py @@ -134,7 +134,7 @@ def run_tests(self): version=meta['version'], description=meta['doc'], long_description=long_description, - long_description_content_type='text/markdown', + long_description_content_type='text/x-rst', keywords='celery django database result backend', author=meta['author'], author_email=meta['contact'],