Cleanup/code quality #1

Merged
froxxxy merged 9 commits from cleanup/code-quality into main 2026-07-18 17:26:22 +02:00
3 changed files with 46 additions and 0 deletions
Showing only changes of commit e9f494ed9d - Show all commits
+1
View File
@@ -0,0 +1 @@
3.11
+41
View File
@@ -0,0 +1,41 @@
[project]
name = "livef12rocks"
version = "0.1.0"
description = "Event photo pep pipeline: Syncthing drop -> gmic/rembg -> web"
readme = "README.md"
requires-python = ">=3.11,<3.12"
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9",
"httpx>=0.27,<0.29",
"ruff>=0.8,<0.10",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
target-version = "py311"
line-length = 120
src = ["app", "tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
ignore = [
"B008", # FastAPI Depends/Form in defaults is intentional
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101"] # assert in tests
[tool.ruff.format]
quote-style = "double"
+4
View File
@@ -0,0 +1,4 @@
-r requirements.txt
pytest>=8.3,<9
httpx>=0.27,<0.29
ruff>=0.8,<0.10