FLL/pyproject.toml
2025-09-13 23:00:44 +02:00

24 lines
435 B
TOML

[project]
name = "robotica"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"lefthook>=1.13.0",
"pybricksdev>=2.1.0",
]
[tool.black]
target-version = ["py313"]
line-length = 88
[tool.ruff]
target-version = "py313"
line-length = 88
[tool.ruff.lint]
extend-select = ["I", "UP"] # import sort + pyupgrade-like
[tool.ruff.format]
quote-style = "double"