From 49762da2cf0a5603e46d713841fe8529b2018785 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Tue, 9 Oct 2018 18:48:55 +0200 Subject: [PATCH] Declare long description content type on setup.py So that it could be rendered properly on pypi. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 67b7533..4a8bcf6 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ def read(fname): version = "1.3.3", packages = find_packages(), long_description=read('README.md'), + long_description_content_type='text/markdown', # metadata for upload to PyPI author = "Stefano Terna", author_email = "stefano.terna@tomorrowdata.io",