From 31b688ab89d8b9558c2d2b1a4bba2a2119d3aa94 Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Wed, 20 Nov 2019 21:39:25 +0200 Subject: [PATCH] Added Long Description type (#166) In order to display long description properly at the pypi.org page we need to specify mime type `text/markdown` for the long desccription if readme is in markdown. Current https://pypi.org/project/disco-py/, doesn't looks nice atm. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index eae8156..8d5224c 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ setup( license='MIT', description='A Python library for Discord', long_description=readme, + long_description_content_type="text/markdown", include_package_data=True, install_requires=requirements, extras_require=extras_require,