From f0703cee15b72b84a17bae09a7cec788abd1a2ac Mon Sep 17 00:00:00 2001 From: Michell Stuttgart Date: Sat, 30 Mar 2019 19:18:59 -0300 Subject: [PATCH] [IMP] Atualiza setup.py --- setup.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 6714875..e072e18 100644 --- a/setup.py +++ b/setup.py @@ -13,12 +13,9 @@ with open(version_path, 'r') as f: exec(f.read(), about) -with open('README.rst', 'r') as readme_file: +with open('README.md', 'r') as readme_file: readme = readme_file.read() -with open('docs/history.rst', 'r') as history_file: - history = history_file.read() - requirements = [ 'zeep', ] @@ -41,7 +38,8 @@ name=about['__title__'], version=about['__version__'], description=about['__description__'], - long_description=readme + '\n\n' + history, + long_description=readme, + long_description_content_type='text/markdown', author=about['__author__'], author_email=about['__author_email__'], maintainer=about['__maintainer__'],