-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (40 loc) · 947 Bytes
/
pyproject.toml
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
[project]
name = "sop-chatbot"
version = "0.1.0"
description = "Main project for the SOP chatbot"
readme = "README.md"
requires-python = ">=3.13"
[dependency-groups]
test = [
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"factory-boy>=3.3.1",
"pytest-asyncio>=0.24.0",
"time-machine>=2.16.0",
"pytest-randomly>=3.16.0",
]
dev = [
"mypy>=1.14.0",
"juju>=3.6.1.0",
"ruff>=0.8.4",
"lxml>=5.3.0",
]
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = 'single'
skip-magic-trailing-comma = false
docstring-code-line-length = 72
docstring-code-format = true
[tool.ruff.lint]
select = ["F", "E", "UP", "I", "W"]
[tool.uv.sources]
api = { workspace = true }
shared = { workspace = true }
[tool.uv.workspace]
members = ["services/*"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["services/api", "services/llm", "shared/src/shared"]