From d3ea150d4d29425f6774da82d97af2e53e54bc61 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 3 Jul 2018 10:24:51 -0400 Subject: [PATCH] markdown --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec41d2ff..8c0438c2 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages, setup, Command here = os.path.abspath(os.path.dirname(__file__)) -with codecs.open(os.path.join(here, "README.rst"), encoding="utf-8") as f: +with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as f: long_description = "\n" + f.read() about = {} @@ -103,6 +103,7 @@ setup( version=about["__version__"], description="Python Development Workflow for Humans.", long_description=long_description, + long_description_content_type='text/markdown', author="Kenneth Reitz", author_email="me@kennethreitz.org", url="https://github.com/pypa/pipenv",