Skip to content

Commit

Permalink
Altera o setup.py p/ ler o README.md ao invés do rst
Browse files Browse the repository at this point in the history
  • Loading branch information
patymori committed Jul 12, 2019
1 parent 6558e45 commit 9b2cb1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE
include README.rst
include README.md

recursive-include tests *
recursive-exclude * __pycache__
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import setup

with open('README.rst') as readme_file:
with open('README.md') as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
Expand All @@ -21,7 +21,8 @@
name='legendarium',
version='2.0.4',
description="Python library to handle SciELO's bibliographic legend",
long_description=readme + '\n\n' + history,
long_description=readme,
long_description_content_type="text/markdown",
author="Jamil Atta Junior",
author_email='[email protected]',
url='https://github.com/scieloorg/legendarium',
Expand Down

0 comments on commit 9b2cb1f

Please sign in to comment.