2022-12-07 12:57:39 +01:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
combine_as_imports = true
|
2023-02-02 19:37:49 +01:00
|
|
|
known_first_party = ["libretime_analyzer"]
|
2022-12-07 12:57:39 +01:00
|
|
|
|
2022-01-22 16:59:15 +01:00
|
|
|
[tool.pylint.messages_control]
|
|
|
|
extension-pkg-whitelist = "pydantic"
|
|
|
|
disable = [
|
|
|
|
"missing-class-docstring",
|
|
|
|
"missing-function-docstring",
|
|
|
|
"missing-module-docstring",
|
|
|
|
]
|
|
|
|
|
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_analyzer"]
|
|
|
|
|
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"
|