-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (64 loc) · 1.05 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
[project]
description = "Submissions for Advent of Code 2023"
name = "AdventOfCode2023"
version = "0.0.1"
dependencies = [
"advent-of-code-data>=2.0.1",
"numpy>=1.26.2"
]
[build-system]
requires = [
"setuptools>=68.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[tool.ruff]
exclude = [
".git",
".mypy_cache",
".ruff_cache",
"_build",
"build",
"dist",
".venv",
"venv",
]
target-version = "py312"
[tool.ruff.lint]
select = [
# flake8-builtins
"A",
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# pycodestyle
"E",
# pyflakes
"F",
# isort
"I",
# flake-8-unused-arguments
"ARG",
# perflint
"PERF",
# pygrep-hooks
"PGH",
# pylint
"PL",
# ruff-exclusive checks
"RUF",
# flake8-simplify
"SIM",
]
ignore = [
# (pylint) too-many-branches
"PLR0912",
# (pylint) magic-value
"PLR2004"
]
[tool.pytest.ini_options]
markers = [
"integration_test: tests that actually hit external systems",
]