mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

Add minimal support for workspace discovery, only used for determining paths in the bluejay commands. We can now discover the workspace structure, namely that the `pyproject.toml` of a package belongs to a workspace `pyproject.toml` with members and exclusion. The globbing logic is inspired by cargo. We don't resolve `workspace = true` metadata declarations yet.
11 lines
216 B
TOML
11 lines
216 B
TOML
[project]
|
|
name = "bird-feeder"
|
|
version = "1.0.0"
|
|
dependencies = ["anyio>=4.3.0,<5", "seeds"]
|
|
|
|
[tool.uv.sources]
|
|
seeds = { workspace = true }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|