From eea96f94d9501f9a04d7e2c0a02096871af012c8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 17 Sep 2018 06:05:03 -0400 Subject: [PATCH] Update setup.py --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 76aba273e0..4a56bb9fff 100755 --- a/setup.py +++ b/setup.py @@ -67,17 +67,17 @@ def run_tests(self): with open(os.path.join(here, 'requests', '__version__.py'), 'r', 'utf-8') as f: exec(f.read(), about) -with open('README.rst', 'r', 'utf-8') as f: +with open('README.md', 'r', 'utf-8') as f: readme = f.read() -with open('HISTORY.rst', 'r', 'utf-8') as f: +with open('HISTORY.md', 'r', 'utf-8') as f: history = f.read() setup( name=about['__title__'], version=about['__version__'], description=about['__description__'], - long_description=readme + '\n\n' + history, - long_description_content_type='text/x-rst', + long_description=readme, + long_description_content_type='text/markdown', author=about['__author__'], author_email=about['__author_email__'], url=about['__url__'],