-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (56 loc) · 854 Bytes
/
pyproject.toml
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
[project]
name = "advent-of-code-2024"
version = "0.1.0"
description = "Advent of Code 2024"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"more-itertools>=10.5.0",
"networkx>=3.4.2",
"pyvis>=0.3.2",
"rich>=13.9.4",
]
[tool.uv]
dev-dependencies = ["ipython>=8.30.0", "mypy>=1.13.0", "ruff>=0.8.1"]
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"I",
"N",
"UP",
"YTT",
"ANN",
"ASYNC",
"S",
"B",
"COM",
"C4",
"DTZ",
"FA",
"ISC",
"ICN",
"G",
"INP",
"PIE",
"PT",
"Q",
"RSE",
"RET",
"SLF",
"SIM",
"TID",
"PTH",
"PGH",
"PL",
"TRY",
"FLY",
"PERF",
"FURB",
"LOG",
"RUF",
]
ignore = ["PLR2004", "PLR0912", "PLR0915", "TRY003", "PLR0911", "RET504"]