-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 928 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
[project]
name = "Tlacuilo"
version = "0.1.0"
description = "ToDo list ESC/POS API for thermal printers"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.128.0",
"pyfiglet>=1.0.2",
"python-dotenv>=1.2.1",
"python-escpos[serial,usb]>=3.1",
]
[project.scripts]
tlacuilo = "tlacuilo.api.routes:main"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.14",
"ty>=0.0.14",
"vulture>=2.14",
]
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"
[tool.ruff.lint]
ignore = ["S701", "S104", "E722"]
extend-select = ["B", "S", "SIM", "T20", "C901"]
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
docstring-code-format = false