Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",)),
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

find_packages(exclude=("tests",)) only excludes the top-level tests package; any subpackages like tests.unit would still be included if added later. Consider excluding both tests and tests.* to ensure the entire tests package tree is never packaged.

Suggested change
packages=find_packages(exclude=("tests",)),
packages=find_packages(exclude=("tests", "tests.*")),

Copilot uses AI. Check for mistakes.
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down