-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.61 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# 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 = "2.1.1"
license = { text = "Apache-2.0" }
authors = [{ name = "Dmitry Prudnikov", email = "mail@polaz.com" }]
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 }
langchain-coordinode = { workspace = true }
llama-index-graph-stores-coordinode = { workspace = true }
[dependency-groups]
# The three workspace members are listed here on purpose. Declaring them in
# [tool.uv.workspace] alone makes them resolvable, not installed, so `uv sync`
# left the environment without them and every test importing coordinode failed
# on a machine that had not installed them by hand at some point.
dev = [
"coordinode",
"langchain-coordinode",
"llama-index-graph-stores-coordinode",
"build>=1.2",
"grpcio-tools>=1.83.1",
"ipykernel>=7.3.0",
"langchain>=1.0",
"langchain-community>=0.3",
"langchain-core>=1.3.3",
"langchain-openai>=1.0",
"langgraph>=1.0",
"llama-index-core>=0.14",
"nbconvert>=7.17.1",
"nest-asyncio>=1.6.0",
"pytest>=9",
"pytest-asyncio>=1.4",
"pytest-timeout>=2.4",
"ruff>=0.16",
]