Skip to content

Commit 94fa1fd

Browse files
committed
Release version 1.3.0.post1 and fix setup.cfg options.packages
1 parent 7207b1d commit 94fa1fd

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

README.rst

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

130+
Version 1.3.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+
135+
Version 1.2.0.post1
136+
^^^^^^^^^^^^^^^^^^^
137+
138+
* Fixed an incorrect ``options.packages`` in ``setup.cfg``, which made the library unusable except when installing from source using ``--editable``.
139+
130140
Version 1.3.0
131141
^^^^^^^^^^^^^
132142

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.3.0"
3+
__version__ = "1.3.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)