From 36127456e7ae6c885843ebe9a2bdf13920c2e1b4 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 14 May 2018 15:12:48 +0800 Subject: [PATCH] update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d7f76a0d..86b81729 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ here = os.path.abspath(os.path.dirname(__file__)) with io.open(os.path.join(here, 'httprunner', '__about__.py'), encoding='utf-8') as f: exec(f.read(), about) -with io.open("README.rst", encoding='utf-8') as f: +with io.open("README.md", encoding='utf-8') as f: long_description = f.read() install_requires = [ @@ -78,7 +78,7 @@ setup( python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4', packages=find_packages(exclude=["examples", "tests", "tests.*"]), package_data={ - '': ["README.rst"], + '': ["README.md"], 'httprunner': ["templates/*"], }, keywords='HTTP api test requests locust',