27 lines
341 B
TOML
27 lines
341 B
TOML
[project]
|
|
name = "imgopti"
|
|
dynamic = ["version"]
|
|
authors = []
|
|
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
|