From af913cad86b157889e75809e380573d593e2dd2f Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Thu, 24 Oct 2019 10:29:43 -0700 Subject: [PATCH] Explicitly marked long_description_content_type as markdown This is a new requirement for pushing non-RST descriptions to pypi; the new version is rejected if this is not present --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 835d01a..c1ff0c5 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,7 @@ def run(self): version=about['__version__'], description=DESCRIPTION, long_description=long_description, + long_description_content_type="text/markdown", author=AUTHOR, author_email=EMAIL, license='MIT',