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',