-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (61 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (61 loc) · 1.42 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "adventofcode"
version = "1.0.0"
description = "Advent of Code"
readme = "README.md"
requires-python = "==3.13.*"
dependencies = [
"advent-of-code-data==2.1.1",
"advent-of-code-ocr>=1.1.0",
"cachier>=4.1.0",
"junitparser==3.2",
"prettyprinter>=0.18.0",
"pyperclip>=1.11.0",
"pyyaml>=6.0.2",
"tqdm>=4.67.1",
]
[tool.vulture]
exclude = [".venv"]
min_confidence = 80
[tool.bandit]
exclude_dirs = [".venv"]
skips = ["B101"]
[tool.isort]
profile = "black"
line_length = 79
force_single_line = true
skip_gitignore = true
include_trailing_comma = true
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["ALL"]
ignore = ["COM", "D1", "FIX002", "PLR2004", "PT", "S101", "T20", "TD"]
[tool.ruff.lint.isort]
force-single-line = true
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "aocd.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "prettyprinter.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "advent_of_code_ocr.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pebble.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "junitparser.*"
ignore_missing_imports = true
[tool.pylsp-mypy]
enabled = true
mypy_command = ["uvx", "mypy", "--python-executable", ".venv/bin/python"]
[dependency-groups]
dev = [
"types-pyperclip>=1.9.0.20250801",
"types-pyyaml>=6.0.12.20250915",
"types-tqdm>=4.67.0.20250809",
]