Skip to content

Commit c650ec1

Browse files
committed
Release version 1.2.0.post1 and fix setup.cfg options.packages
1 parent fb5708e commit c650ec1

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ If these links are no longer functional, some are archived in the `Internet Arch
127127
Changelog
128128
---------
129129

130+
Version 1.2.0.post1
131+
^^^^^^^^^^^^^^^^^^^
132+
133+
* Fixed an incorrect ``options.packages`` in ``setup.cfg``, which made the library unusable except when installing from source using ``--editable``.
134+
130135
Version 1.2.0
131136
^^^^^^^^^^^^^
132137

rsrcfork/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.0.post1"
44

55
__all__ = [
66
"Resource",

setup.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,12 @@ keywords =
3636
setup_requires =
3737
setuptools>=39.2.0
3838
python_requires = >=3.6
39-
packages =
39+
packages = find:
40+
41+
[options.packages.find]
42+
include =
4043
rsrcfork
44+
rsrcfork.*
4145

4246
[options.entry_points]
4347
console_scripts =

0 commit comments

Comments
 (0)