kicad/pyproject.toml

17 lines
288 B
TOML
Executable File

[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "100"
[tool.black]
line-length = 120
organize-imports = true
target-version = ['py38']