From c650ec1fb8d4e3e13cdc6c745badfb59bc823e5b Mon Sep 17 00:00:00 2001 From: dgelessus Date: Wed, 25 Sep 2019 02:11:07 +0200 Subject: [PATCH] Release version 1.2.0.post1 and fix setup.cfg options.packages --- README.rst | 5 +++++ rsrcfork/__init__.py | 2 +- setup.cfg | 6 +++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 4fa090c..8912dd9 100644 --- a/README.rst +++ b/README.rst @@ -127,6 +127,11 @@ If these links are no longer functional, some are archived in the `Internet Arch Changelog --------- +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.2.0 ^^^^^^^^^^^^^ diff --git a/rsrcfork/__init__.py b/rsrcfork/__init__.py index 0b724c6..6b59516 100644 --- a/rsrcfork/__init__.py +++ b/rsrcfork/__init__.py @@ -1,6 +1,6 @@ """A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files.""" -__version__ = "1.2.0" +__version__ = "1.2.0.post1" __all__ = [ "Resource", diff --git a/setup.cfg b/setup.cfg index f1a3e54..47ffee6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -36,8 +36,12 @@ keywords = setup_requires = setuptools>=39.2.0 python_requires = >=3.6 -packages = +packages = find: + +[options.packages.find] +include = rsrcfork + rsrcfork.* [options.entry_points] console_scripts =