-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 911 Bytes
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
[project]
name = "AIRTBench-Code"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"aiodocker>=0.24.0",
"backoff>=2.2.1",
"cyclopts>=3.12.0",
"docker>=7.1.0",
"dreadnode==1.17.1",
"ipykernel>=6.29.5",
"mypy>=1.15.0",
"pythonnet>=3.0.5",
"rigging>=3.0.0",
"ruff>=0.11.5",
"tenacity>=9.1.2",
"universal-pathlib>=0.2.6",
]
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
[tool.mypy]
strict = true
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"E501", # line too long (we make best effort)
"TRY003", # long messages in exception classes
"EM", # Picky message construction for exceptions
"C90", # mccabe complexity
"A002", # shadowing built-in
"ANN401", # Any type
"D", # docstrings
]
[tool.ruff.format]
skip-magic-trailing-comma = false