Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
[IMP] Atualiza setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mstuttgart authored Mar 30, 2019
1 parent f53ab8e commit f0703ce
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
Expand All @@ -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__'],
Expand Down

0 comments on commit f0703ce

Please sign in to comment.