Код: Выделить всё
backend
Код: Выделить всё
.
├── my-app
│ ├── __init__.py
│ ├── __pycache__
│ ├── api
│ ├── clients
|
├── justfile
├── model.py
├── packages
│ └── backend ###### here
├── pyproject.toml
├── README.md
├── tests
│ ├── __pycache__
│ ├── conftest.py
├── uv.lock
< /code>
my-app
Код: Выделить всё
[project]
name = "my-app"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "==3.11.4"
dependencies = [
...
"rich>=13.8.1",
"backend" ##### here
]
[tool.uv.sources]
backend = { workspace = true }
[tool.uv.workspace]
members = ["packages/*"]
[build-system]
requires = ["uv_build>=0.8.7,
Подробнее здесь: [url]https://stackoverflow.com/questions/79731839/uv-package-manager-cannot-find-my-workspace-member[/url]