From 2f075234b84511ee63b74e69ccc8ddc331de1199 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 15 Oct 2018 10:51:19 +0100 Subject: [PATCH] Tell PyPI long_description is Markdown Rendering of the README on PyPI is broken because it expects RST by default and Markdown is being uploaded. This fixes it. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9136339..09755da 100755 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ "Programming Language :: Python :: 3.6", ], long_description=long_description, + long_description_content_type='text/markdown', tests_require=('nose', 'nosexcover'), test_suite='nose.collector' )