remove long description from README.md

This commit is contained in:
debugtalk
2017-08-17 16:48:58 +08:00
parent 5efdb716e3
commit 4498295f96

View File

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