From 2f667f950eb66daa51e83af99e6ec4d860a1b696 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 13 Dec 2020 19:56:33 +0100 Subject: [PATCH] fix long description content type --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 0388327b4..c7a13f493 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() +long_description_content_type = "text/markdown" with open(os.path.join(here, "mitmproxy", "version.py")) as f: match = re.search(r'VERSION = "(.+?)"', f.read()) @@ -22,6 +23,7 @@ setup( version=VERSION, description="An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets.", long_description=long_description, + long_description_content_type=long_description_content_type, url="http://mitmproxy.org", author="Aldo Cortesi", author_email="aldo@corte.si",