-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 907 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (40 loc) · 907 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
39
40
41
42
43
44
45
46
47
48
[project]
name = "redlich-workspace"
version = "0.1.0"
description = "Club chatbot answering via tools over PII data; only PII-sanitized data reaches the LLM."
requires-python = ">=3.12"
dependencies = [
"runner",
"redlich",
]
[tool.uv]
package = false
[tool.uv.workspace]
members = ["runner", "app"]
[tool.uv.sources]
runner = { workspace = true }
redlich = { workspace = true }
[dependency-groups]
dev = [
"pytest",
"pyright",
"ruff",
"pytest-randomly",
"pytest-xdist",
"pytest-json-report",
"semgrep",
]
[tool.pyright]
typeCheckingMode = "strict"
pythonVersion = "3.12"
venvPath = "."
venv = ".venv"
extraPaths = ["runner/src", "app/src"]
[tool.ruff]
target-version = "py312"
src = ["runner/src", "app/src"]
[tool.ruff.lint]
extend-select = ["I", "B", "UP", "SIM", "RUF"]
[tool.pytest.ini_options]
testpaths = ["runner/tests", "app/tests"]
addopts = "-n auto"