forked from PointerDilemma/Tortillas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (26 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (26 loc) · 765 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
[project]
name = "tortillas"
version = "0.2.0"
description = "A test runner for SWEB Educational OS (IAIK/sweb)"
authors = [
{ name = "Maximilian Seidler" },
{ name = "Leo Moser" }
]
requires-python = ">=3.8"
dependencies = ["pyyaml"]
[project.optional-dependencies]
fancy = ["enlighten"]
dev = ["pytest", "ruff", "pre-commit"]
[project.scripts]
tortillas = "tortillas.__main__:main"
[project.urls]
"Source" = "https://github.com/PaideiaDilemma/Tortillas"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
python_files = "check_*.py"
python_classes = ""
[tool.ruff]
select = ["E", "F", "ANN001", "ANN002", "ANN001", "ANN102", "C4", "RET", "SIM", "T"]
extend-exclude = ["salsa.py", "example"]