From 343259049cc6aa8221f78e6da6c7723bf28738b9 Mon Sep 17 00:00:00 2001 From: dgelessus Date: Wed, 25 Sep 2019 01:51:23 +0200 Subject: [PATCH] Fix setup.cfg options.packages not including subpackages This caused normal installs (i. e. without --editable) of this library to not include the rsrcfork.compress subpackage, and made everything unusable as a result. Oops. --- setup.cfg | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 =