-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.39 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
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "nucliadb_workspace"
requires-python = ">=3.10"
version = "6.13.0"
dependencies = ["nucliadb"]
[tool.uv.workspace]
members = [
"nidx/nidx_binding",
"nidx/nidx_protos",
"nucliadb_dataset",
"nucliadb_models",
"nucliadb_protos",
"nucliadb_sdk",
"nucliadb_telemetry",
"nucliadb_utils",
"nucliadb",
]
[tool.uv]
default-groups = "all"
managed = true
[tool.uv.sources]
nidx-binding = { workspace = true }
nidx-protos = { workspace = true }
nucliadb = { workspace = true }
nucliadb-dataset = { workspace = true }
nucliadb-models = { workspace = true }
nucliadb-protos = { workspace = true }
nucliadb-sdk = { workspace = true }
nucliadb-telemetry = { workspace = true }
nucliadb-utils = { workspace = true }
[dependency-groups]
dev = [
# Linting
"mypy-protobuf>=3.6.0",
"mypy==1.15",
"pre-commit==2.20.0",
"ruff==0.9.9",
# Testing
"aioresponses",
"faker>=25.1.0",
"jsonschema",
"pdbpp>=0.10.3",
"pytest-asyncio>=0.23.0",
"pytest-benchmark",
"pytest-cov==3.0.0",
"pytest-docker-fixtures[pg]>=1.4.2",
"pytest-lazy-fixtures",
"pytest-mock",
"pytest-rerunfailures>=11.1.2",
"pytest-shard",
"pytest-xdist>=3.6.1",
"pytest==8.2.2",
"requests",
"requests-mock>=1.12.1",
"types-PyYAML>=6.0.12.20240808",
]
nidx = [
"nidx-binding"
]
sdk = [
"nucliadb_sdk",
"nucliadb_dataset"
]