26 lines
405 B
TOML
26 lines
405 B
TOML
[project]
|
|
name = "karaokatalog"
|
|
version = "0.1.0"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"flask>=3.1.2",
|
|
"tqdm>=4.67.1",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
# Pyflakes
|
|
"F",
|
|
# isort (for imports)
|
|
"I",
|
|
# pyupgrade (to upgrade to latest language syntax)
|
|
"UP",
|
|
# flake8-simplify
|
|
"SIM",
|
|
# flake8-use-pathlib
|
|
"PTH",
|
|
# mccabe
|
|
"C90",
|
|
]
|