From 920f4558fc2bacc852546c5a6126e194d0562f1f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 24 Mar 2026 16:14:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(backend):=20fix=20module=20inclusi?= =?UTF-8?q?on=20with=20uv-build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/backend/pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 1f775714..5c6253c5 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -90,6 +90,11 @@ dev = [ ] [tool.uv.build-backend] +module-name = [ + "core", + "demo", + "meet" +] module-root = "" source-exclude = [ "**/tests/**",