-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (52 loc) · 975 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tola-agp-tpf-utils"
version = "1.1.3"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click",
"pyyaml",
'importlib-metadata; python_version>="3.10"',
]
[project.optional-dependencies]
devel = [
"pytest",
"ruff",
]
[project.scripts]
asm-format = "tola.assembly.scripts.asm_format:cli"
pretext-to-asm = "tola.assembly.scripts.pretext_to_asm:cli"
pretext-to-tpf = "tola.assembly.scripts.pretext_to_asm:cli"
find-overlaps = "tola.assembly.scripts.find_overlaps:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff.lint]
select = [
"A",
"ARG",
"B",
"BLE",
"C4",
"COM",
"DTZ",
"E",
"EM",
"F",
"I",
"ISC",
"LOG",
"N",
"PYI",
"S",
"SIM",
"U"
]
ignore = [
"COM812",
"C901"
]
[tool.ruff.lint.per-file-ignores]
"{test_*,*_test,conftest}.py" = ["S101"]