From c0931b42fe04388949ad7a8c6da7502b102d0fb4 Mon Sep 17 00:00:00 2001 From: lennartk Date: Sat, 13 Apr 2019 12:06:21 +0200 Subject: [PATCH] Uncommented long_description_content_type Then Pypi also knows that the README is a markdown file so it can get rendered properly. What confuses me is that the line has never been commented but has just been added in the commented version in a7ce75e339a6aaf3a0bb52175c41776edd549bdc --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 81df16b8..7be55d42 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ def run_tests(self): version=version, description="GraphQL implementation for Python", long_description=open("README.md").read(), - # long_description_content_type="text/markdown", + long_description_content_type="text/markdown", url="https://github.com/graphql-python/graphql-core", download_url="https://github.com/graphql-python/graphql-core/releases", author="Syrus Akbary, Jake Heinz, Taeho Kim",