-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.18 KB
/
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
50
51
52
53
54
55
[project]
name = "factchecker"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiogram>=3.13.0",
"aiojobs>=1.3.0",
"alembic>=1.13.2",
"environs>=11.0.0",
"google-api-python-client>=2.145.0",
"json-repair>=0.30.0",
"langfuse>=2.52.1",
"litellm>=1.52.12",
"orjson>=3.10.7",
"structlog>=24.4.0",
"tenacity>=9.0.0",
"pyyaml>=6.0",
]
[tool.uv]
dev-dependencies = [
"ruff>=0.7.1"
]
[tool.ruff]
line-length = 100
indent-width = 4
target-version = "py312"
# Enable the "ISORT" rule to automatically sort imports
select = ["I001"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "I"]
ignore = ["E501"]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = true
mark-parentheses = true
[tool.ruff.lint.flake8-bugbear]
# Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
extend-immutable-calls = ["fastapi.Depends", "fastapi.Query"]
[tool.mypy]
[[tool.mypy.overrides]]
module = ["googleapiclient.*", "langfuse.*"]
ignore_missing_imports = true