🐛(backend): fix module inclusion with uv-build

After migrating to uv-build only the module matching the project name was
included in sdist/wheel packages. Without a src layout additional modules
need to be tracked manually to ship them in built packages.
This commit is contained in:
Martin Weinelt
2026-03-24 16:14:31 +01:00
parent 9df901b9d6
commit 920f4558fc
+5
View File
@@ -90,6 +90,11 @@ dev = [
]
[tool.uv.build-backend]
module-name = [
"core",
"demo",
"meet"
]
module-root = ""
source-exclude = [
"**/tests/**",