From 5332b6de49cdb1d68382a6df4c5bf311a57d1a77 Mon Sep 17 00:00:00 2001 From: HenriTEL Date: Tue, 18 Nov 2025 16:29:40 +0100 Subject: [PATCH] chore: exclude tests from library packaging In addition to have a cleaner package, those changes avoid conflicts when library users have a `tests/` directory with no `__init__.py`. In such case python tries to import things in the `tests` package the sdk provides currently. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bcd5d8b..3363237 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ "Code": "https://github.com/runware/sdk-python", "Issue tracker": "https://github.com/runware/sdk-python/issues", }, - packages=find_packages(), + packages=find_packages(exclude=("tests",)), classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers",