forked from ectfmitre/ectf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.28 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
[project]
name = "ectf"
version = "2026.0.3"
description = "Tools for eCTF competitors"
readme = "README.md"
authors = [
{ name = "Ben Janis", email = "btjanis@mitre.org" }
]
requires-python = ">=3.12"
dependencies = [
"arrow>=1.3.0",
"attrs>=25.3.0",
"loguru>=0.7.3",
"pyserial>=3.5",
"pyyaml>=6.0.2",
"requests>=2.32.5",
"rich>=14.1.0",
"tqdm>=4.67.1",
"typer>=0.16.1",
]
[project.scripts]
ectf = "ectf.cli:app"
update = "ectf.hw.fthr:update"
unlock = "ectf.hw.fthr:unlock"
bootinfo = "ectf.tools.utils.bootinfo:main"
flash = "ectf.tools.utils.flash:main"
list = "ectf.tools.hsm.list:main"
read = "ectf.tools.hsm.read:main"
write = "ectf.tools.hsm.write:main"
listen = "ectf.tools.hsm.listen:main"
interrogate = "ectf.tools.hsm.interrogate:main"
receive = "ectf.tools.hsm.receive:main"
pack = "ectf.tools.utils.pack:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"isort>=6.0.1",
"pre-commit>=4.2.0",
"ruff>=0.11.8",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ERA001","T201","S603","PERF401","S101","PLR0912","C901","COM812","D415","D400","D203","D213","TD002","TD003","TD004","FIX002"]
[tool.ruff.lint.flake8-annotations]
mypy-init-return = true
[tool.ruff.format]
indent-style = "space"