-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (23 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
25 lines (23 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Workspace root.
#
# This file exists so `uv` recognizes the repo as a workspace and can resolve
# both the `backend/` (deployable application) and `cli/` (developer/operator
# tool) packages from a single venv. It is NOT a deployable package itself —
# nothing here ships to production.
#
# Most commands work from anywhere in the repo:
#
# uv sync # syncs the workspace (one venv shared by all members)
# uv run bp ... # runs the CLI from cli/, accessible from any cwd
# uv run pytest # runs the backend test suite
#
# To install `bp` machine-wide so it works outside this repo:
#
# uv tool install --editable ./cli
[project]
name = "fastapi-boilerplate-workspace"
version = "0"
description = "Workspace root — see backend/ and cli/ for actual packages."
requires-python = ">=3.11"
[tool.uv.workspace]
members = ["backend", "cli"]