Skip to content

Commit

Permalink
Merge pull request #174 from patymori/tk-173
Browse files Browse the repository at this point in the history
Corrige problema na leitura do README.md
  • Loading branch information
patymori authored Jul 17, 2019
2 parents 9b2cb1f + 183f944 commit aab5018
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 79 deletions.
9 changes: 2 additions & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@

include AUTHORS.rst

include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE
include README.rst
include README.md

recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]

recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
recursive-exclude tests *
recursive-exclude docs *
56 changes: 0 additions & 56 deletions README.rst

This file was deleted.

5 changes: 0 additions & 5 deletions legendarium/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +0,0 @@
# -*- coding: utf-8 -*-

__author__ = 'Jamil Atta Junior'
__email__ = '[email protected]'
__version__ = '2.0.4'
17 changes: 6 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup
from setuptools import setup, find_packages

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

with open('HISTORY.rst') as history_file:
history = history_file.read()

requirements = [
# TODO: put package requirements here
]
Expand All @@ -19,18 +16,16 @@

setup(
name='legendarium',
version='2.0.4',
description="Python library to handle SciELO's bibliographic legend",
version='2.0.5',
description="Python library to handle SciELO's bibliographic strip",
long_description=readme,
long_description_content_type="text/markdown",
author="Jamil Atta Junior",
author_email='[email protected]',
url='https://github.com/scieloorg/legendarium',
packages=[
'legendarium',
],
package_dir={'legendarium':
'legendarium'},
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests", "docs"]
),
include_package_data=True,
install_requires=requirements,
license="BSD license",
Expand Down

0 comments on commit aab5018

Please sign in to comment.