From f7de97436d5c08313c45966ba988d61eb4e15640 Mon Sep 17 00:00:00 2001 From: Miro <200482516+Mirochill@users.noreply.github.com> Date: Mon, 25 May 2026 21:02:06 +0200 Subject: [PATCH] Exclude tests from installed packages --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f057fb8..d4756c7 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,9 @@ author=__author__, author_email=__contact__, url=__url__, - packages=find_packages(where="src"), + packages=find_packages( + where="src", exclude=["hyperlink.test", "hyperlink.test.*"] + ), package_dir={"": "src"}, package_data=dict(hyperlink=["py.typed", "idna-tables-properties.csv.gz"]), zip_safe=False,