-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 932 Bytes
/
Copy pathpyproject.toml
File metadata and controls
75 lines (68 loc) · 932 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
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 = "nukedockerbuild"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12.3"
dependencies = [
"requests>=2.32.3",
]
[tool.uv]
package=true
[project.scripts]
nuke-dockerbuild = "nukedockerbuild.main:main"
[tool.black]
line-length = 79
[tool.pytest.ini_options]
addopts = "--capture=tee-sys"
pythonpath = [
"src"
]
[tool.isort]
profile = "black"
[tool.ruff]
select = [
"A",
"B",
"BLE",
"C4",
"EM",
"ERA",
"F",
"FA",
"FIX",
"G",
"I",
"ICN",
"INP",
"ISC",
"N",
"NPY",
"PERF",
"PGH",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"SIM",
"SLF",
"SLOT",
"T20",
"TCH",
"TD",
"TID",
"UP",
"W",
"YTT",
]
show-fixes = true
target-version = "py313"
[dependency-groups]
dev = [
"pytest>=8.3.4",
]