Release version 1.3.0.post1 and fix setup.cfg options.packages

This commit is contained in:
dgelessus 2019-09-25 02:12:54 +02:00
parent 7207b1d32b
commit 94fa1fde44
3 changed files with 16 additions and 2 deletions

View File

@ -127,6 +127,16 @@ If these links are no longer functional, some are archived in the `Internet Arch
Changelog Changelog
--------- ---------
Version 1.3.0.post1
^^^^^^^^^^^^^^^^^^^
* Fixed an incorrect ``options.packages`` in ``setup.cfg``, which made the library unusable except when installing from source using ``--editable``.
Version 1.2.0.post1
^^^^^^^^^^^^^^^^^^^
* Fixed an incorrect ``options.packages`` in ``setup.cfg``, which made the library unusable except when installing from source using ``--editable``.
Version 1.3.0 Version 1.3.0
^^^^^^^^^^^^^ ^^^^^^^^^^^^^

View File

@ -1,6 +1,6 @@
"""A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files.""" """A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files."""
__version__ = "1.3.0" __version__ = "1.3.0.post1"
__all__ = [ __all__ = [
"Resource", "Resource",

View File

@ -36,8 +36,12 @@ keywords =
setup_requires = setup_requires =
setuptools>=39.2.0 setuptools>=39.2.0
python_requires = >=3.6 python_requires = >=3.6
packages = packages = find:
[options.packages.find]
include =
rsrcfork rsrcfork
rsrcfork.*
[options.entry_points] [options.entry_points]
console_scripts = console_scripts =