ufwban/pyproject.toml
2025-05-25 13:01:19 +00:00

30 lines
440 B
TOML

[project]
name = "ngxden"
description = "Generate a deny Nginx conf based on Nginx access logs"
authors = [
{name = "rmanach", email = "manach.r@msn.com"},
]
requires-python = ">= 3.10"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff]
exclude = [
"venv",
]
line-length = 88
target-version = "py311"
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.mypy]
exclude = [
"venv",
]
ignore_missing_imports = true