-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 1.17 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
[project]
name = "deep-question-tree"
version = "0.1.0"
description = "MCTS + LLM exploration workspace with a FastAPI backend and Next.js frontend"
readme = "README.md"
requires-python = ">=3.12,<3.15"
dependencies = [
"pydantic==2.12.5",
"pydantic-settings==2.13.1",
"fastapi==0.135.3",
"uvicorn[standard]==0.42.0",
"openai==2.30.0",
"tenacity==9.1.4",
"PyYAML==6.0.3",
"python-dotenv==1.2.2",
"Jinja2==3.1.6",
"python-multipart==0.0.22",
"colorlog==6.10.1",
]
[dependency-groups]
dev = [
"pytest==9.0.2",
"pytest-cov==7.1.0",
"pytest-asyncio==1.3.0",
"httpx==0.28.1",
"black==25.11.0",
"isort==7.0.0",
"mypy==1.19.0",
"types-pyyaml>=6.0.12.20250915",
]
[tool.uv]
package = false
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.isort]
profile = "black"
py_version = 312
src_paths = ["src", "tests"]
[tool.mypy]
python_version = "3.12"
mypy_path = "."
packages = ["src.backend"]
namespace_packages = true
explicit_package_bases = true
warn_unused_ignores = true
warn_redundant_casts = true
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"openai",
]
ignore_missing_imports = true