From 4498295f96b417fe488d6b2dabb8c9f5b21fbc2d Mon Sep 17 00:00:00 2001 From: debugtalk Date: Thu, 17 Aug 2017 16:48:58 +0800 Subject: [PATCH] remove long description from README.md --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 247bc4c3..744401a9 100644 --- a/setup.py +++ b/setup.py @@ -7,14 +7,11 @@ from setuptools import setup, find_packages with open(os.path.join(os.path.dirname(__file__), 'ate', '__init__.py')) as f: version = re.compile(r"__version__\s+=\s+'(.*)'", re.I).match(f.read()).group(1) -with open('README.md') as f: - long_description = f.read() - setup( name='ApiTestEngine', version=version, description='API test engine.', - long_description=long_description, + long_description="Best practice of API test, including automation test and performance test.", author='Leo Lee', author_email='mail@debugtalk.com', url='https://github.com/debugtalk/ApiTestEngine',