forked from gillesvink/NukeDockerBuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (77 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
86 lines (77 loc) · 1.18 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
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "nukedockerbuild"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Gilles Vink", email = "noreply@github.com" }
]
dependencies = [
"requests>=2.32.3",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.4",
]
[project.scripts]
nukedockerbuild = "nukedockerbuild.main:generate_dockerfiles"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/nukedockerbuild"]
[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 = "py311"