💬 Commit message: Update 2026-02-15 17:55:57, 7 files, 47 lines

📁 Files changed: 7
📝 Lines changed: 47

  • pyproject.toml
  • __init__.py
  • civitai_routes.py
  • db_routes.py
  • download_routes.py
  • gallery_routes.py
  • uv.lock
This commit is contained in:
Adam Ladachowski
2026-02-15 17:55:57 +01:00
parent 0ce7744324
commit 1d41f924bf
7 changed files with 41 additions and 6 deletions
+6 -1
View File
@@ -13,7 +13,7 @@ dependencies = [
]
[project.optional-dependencies]
server = ["fastapi>=0.115", "uvicorn>=0.30"]
server = ["fastapi>=0.115", "uvicorn>=0.30", "scalar-fastapi>=1.6"]
[project.scripts]
tsr = "tensors:main"
@@ -36,6 +36,7 @@ dev = [
"respx>=0.22.0",
"fastapi>=0.115",
"uvicorn>=0.30",
"scalar-fastapi>=1.6",
]
[tool.ruff]
@@ -92,6 +93,10 @@ ignore_missing_imports = true
module = ["uvicorn.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["scalar_fastapi.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=tensors --cov-report=term-missing"