-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 898 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
26
27
28
29
30
31
32
33
34
35
36
37
38
# Workspace root — not a package. Controls uv workspace and shared dev tooling.
# uv users: `uv sync` installs all packages in editable mode.
# pip users: `pip install -e coordinode/` installs individual packages.
[project]
name = "coordinode-workspace"
version = "1.0.0"
requires-python = ">=3.11"
dependencies = [
"googleapis-common-protos>=1.74.0",
]
[tool.uv]
package = false # virtual root — not installed as a package
[tool.uv.workspace]
members = [
"coordinode",
"langchain-coordinode",
"llama-index-coordinode",
]
[tool.uv.sources]
# Local editable installs for workspace members
coordinode = { workspace = true }
[dependency-groups]
dev = [
"build>=1.2",
"grpcio-tools>=1.60",
"langchain-community>=0.3",
"langchain-core>=0.3",
"llama-index-core>=0.12",
"pytest>=8",
"pytest-asyncio>=0.23",
"pytest-timeout>=2",
"ruff>=0.4",
]