-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #174 from patymori/tk-173
Corrige problema na leitura do README.md
- Loading branch information
Showing
4 changed files
with
8 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 * |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
] | ||
|
@@ -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", | ||
|