-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 1.03 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
[project]
name = "unraid-monitor-bot"
version = "0.18.1"
requires-python = ">=3.11"
dependencies = [
"docker>=7.0.0,<8.0.0",
"aiogram>=3.30.0,<4.0.0",
"pyyaml>=6.0,<7.0",
"pydantic>=2.0,<3.0",
"pydantic-settings>=2.0,<3.0",
"psutil>=6.1.0,<8.0.0",
# aiogram >=3.30 allows aiohttp <3.15 — floor raised past the 2026 CVE
# batch (all fixed in 3.14.x); CI pip-audit now runs with no ignores.
"aiohttp>=3.14.1,<4.0.0",
"python-dotenv>=1.0.0,<2.0.0",
]
[project.optional-dependencies]
ai = [
"anthropic>=0.40.0,<1.0.0",
"openai>=2.0.0,<3.0.0",
]
dev = [
"types-PyYAML>=6.0",
"types-psutil>=6.0",
"types-docker>=7.0",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.0",
"mypy>=1.20",
"pip-audit>=2.7",
"anthropic>=0.40.0,<1.0.0",
"openai>=2.0.0,<3.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[tool.ruff]
line-length = 100
target-version = "py311"