From b2e8418a620fcb6199ce9b04b3fbe74d131614e0 Mon Sep 17 00:00:00 2001 From: Robsdedude Date: Tue, 22 Nov 2022 16:40:36 +0100 Subject: [PATCH] Don't publish test packages Previously, the testkit backend was included in the published packed. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 45358ce11..e0915b421 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ "console_scripts": [ ], } -packages = find_packages(exclude=["tests"]) +packages = find_packages(exclude=["test*"]) readme_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "README.rst")) with open(readme_path, mode="r", encoding="utf-8") as fr: