From 342a99b01d36919ca676b8f558b89d528845b8b4 Mon Sep 17 00:00:00 2001 From: Max Vetrov Date: Mon, 8 Apr 2019 17:03:52 +0200 Subject: [PATCH] Show the description correctly on PyPI PyPI uses markdawn on default, so you should set description content type. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6dab726c..4b71d0b9 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ def run_tests(self): open("README.rst").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read() ), + long_description_content_type="text/x-rst", classifiers=[ "Topic :: Scientific/Engineering :: GIS", "Programming Language :: Python",