From c59969a3bd34f8378733569c6bfcde186ec99092 Mon Sep 17 00:00:00 2001 From: davidpofo Date: Wed, 17 Feb 2021 16:07:31 -0500 Subject: [PATCH] Update setup.py Need to set long description type to markdown or else it defaults to rst. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf654bd..5553819 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,7 @@ description='Tables and plain text rendering extension to commonmark.', long_description=open("README.md", encoding='utf-8').read(), + long_description_content_type='text/markdown', url='https://github.com/GovReady/CommonMark-py-Extensions', author=u'GovReady PBC', @@ -29,7 +30,7 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9' + 'Programming Language :: Python :: 3.9', ], keywords="markdown commonmark tables plaintext",