-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (42 loc) · 1.05 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
[project]
name = "patchbay"
version = "0.2.0"
description = "Claude Code Telegram Bridge — relay Telegram messages to Claude Code sessions"
requires-python = ">=3.13"
dependencies = [
"claude-agent-sdk>=0.1.68",
"httpx>=0.28.1",
"model-output-protocol",
"python-dotenv>=1.2.1",
"python-telegram-bot>=22.6",
"telegramify-markdown>=0.5.4",
]
[dependency-groups]
dev = [
"hypothesis>=6.152.2",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"ruff>=0.9",
]
[tool.uv.sources]
model-output-protocol = { path = "../model-output-protocol", editable = true }
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["bridge", "patchbay"]
omit = ["tests/*", "scripts/tcc/*", "validate.py"]
[tool.coverage.report]
show_missing = true
fail_under = 75
[tool.ruff]
target-version = "py313"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E402", "E501"]
[tool.ruff.lint.per-file-ignores]
"bridge.py" = ["F401"]