Commits
Click on a commit to change the comparison rangeMultiple modules in namespace packages
Support multiple root modules in namespace packages by enumerating them:
```toml
[tool.uv.build-backend]
module-name = ["foo", "bar"]
```
This allows applications with multiple root packages without migrating to workspaces.
We don't recommend this structure, but it reduces the number of cases that need `namespace = true`.
Fixes #14435