2022-01-22 16:59:15 +01:00
|
|
|
[tool.pylint.messages_control]
|
2022-08-09 21:14:19 +02:00
|
|
|
extension-pkg-whitelist = [
|
|
|
|
"lxml.etree",
|
|
|
|
"pydantic",
|
|
|
|
]
|
2022-01-22 16:59:15 +01:00
|
|
|
disable = [
|
|
|
|
"missing-class-docstring",
|
|
|
|
"missing-function-docstring",
|
|
|
|
"missing-module-docstring",
|
|
|
|
]
|
|
|
|
|
2022-08-09 20:30:44 +02:00
|
|
|
[tool.pylint.format]
|
|
|
|
disable = "logging-fstring-interpolation"
|
|
|
|
|
2022-07-31 11:23:27 +02:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
log_cli = true
|
|
|
|
log_cli_level = "DEBUG"
|
|
|
|
|
2022-12-07 11:42:16 +01:00
|
|
|
[tool.coverage.run]
|
|
|
|
source = ["libretime_playout"]
|
|
|
|
|
2022-01-22 16:48:32 +01:00
|
|
|
[build-system]
|
2022-08-21 14:48:52 +02:00
|
|
|
requires = ["setuptools", "wheel"]
|
2022-01-22 16:48:32 +01:00
|
|
|
build-backend = "setuptools.build_meta"
|