From e8e21eb1b6657d68b6a6de17b21e039b26d10a91 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Sun, 5 Jan 2025 18:40:28 -0800 Subject: [PATCH] Fix tests not being excluded in wheel --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 0314c15..84d6982 100644 --- a/setup.cfg +++ b/setup.cfg @@ -55,7 +55,9 @@ install_requires = python_requires = >=3.9 [options.packages.find] -exclude = tests; testing +exclude = + tests* + testing* [options.entry_points] console_scripts = comictagger=comictaggerlib.main:main