libretime/worker/pyproject.toml

27 lines
544 B
TOML
Raw Normal View History

[tool.isort]
profile = "black"
combine_as_imports = true
2023-02-02 19:37:49 +01:00
known_first_party = ["libretime_worker"]
[tool.pylint.messages_control]
extension-pkg-whitelist = "pydantic"
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.pylint.format]
disable = "logging-fstring-interpolation"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
2022-12-07 11:42:16 +01:00
[tool.coverage.run]
source = ["libretime_worker"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"