30 lines
468 B
TOML
30 lines
468 B
TOML
[project]
|
|
name = "ufwban"
|
|
description = "A little CLI tool that read Nginx access logs and block ip based on simple rules."
|
|
|
|
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
|