-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.27 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
[project]
name = "ai-assistant"
version = "0.1.0"
description = "Deadlock AI Assistant - Intelligent assistant with ClickHouse, Wiki, and API integrations"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"textual>=0.89.0",
"claude-agent-sdk>=0.1.0",
"redis>=5.0.0",
"pydantic>=2.10.0",
"httpx>=0.28.0",
"pywikibot>=9.0.0",
"clickhouse-connect>=0.8.0",
"langfuse>=3.12.1",
"langsmith[claude-agent-sdk,otel]>=0.3.0",
"toon-format>=0.9.0",
"patreon>=0.5.0",
]
[project.scripts]
deadlock-assistant = "packages.cli.__main__:main"
[tool.uv]
package = true
[tool.uv.sources]
toon-format = { git = "https://github.com/toon-format/toon-python" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["packages"]
[dependency-groups]
dev = [
"ruff>=0.9.0",
"ty>=0.0.1a9",
"pytest>=8.3.0",
"httpx>=0.28.0",
"pytest-asyncio>=0.24.0",
]
[tool.ruff]
line-length = 120
target-version = "py314"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "ARG", "SIM"]
[tool.pytest.ini_options]
testpaths = ["packages"]
python_files = ["*_test.py"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"