forked from WhyNotHugo/python-barcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 674 Bytes
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 674 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
[tool.setuptools_scm]
write_to = "barcode/version.py"
version_scheme = "post-release"
[tool.ruff]
select = [
"F",
"E",
"W",
"I",
"N",
"UP",
"YTT",
"BLE",
"B",
"C4",
"ISC",
"ICN",
"G",
"INP",
"PIE",
"PYI",
"PT",
"Q",
"RSE",
"RET",
"SIM",
"TID",
"TCH",
"INT",
"ERA",
"PGH",
"PLE",
"RUF",
]
target-version = "py38"
[tool.ruff.isort]
force-single-line = true
required-imports = ["from __future__ import annotations"]
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
]