28 lines
512 B
TOML
28 lines
512 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",
|
|
"ruff>=0.13.0",
|
|
]
|
|
|
|
[tool.black]
|
|
target-version = ["py313"]
|
|
line-length = 88
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
line-length = 88
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = ["I", "UP", "C"] # isort, pyupgrade, pep8-naming, mccabe
|
|
|
|
[tool.ruff.lint.mccabe]
|
|
max-complexity = 12
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|