Files
manage/backend/pyproject.toml
T
2026-05-04 13:50:53 +02:00

39 lines
805 B
TOML

[project]
name = "media-library-viewer-backend"
version = "0.1.0"
description = "FastAPI backend for Media Library Viewer"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.100",
"uvicorn[standard]>=0.20",
"pydantic-settings>=2.0",
"paramiko>=3.0",
"requests>=2.28",
"python-dotenv>=1.0",
"pandas>=2.0",
"PyJWT[crypto]>=2.8",
"python-multipart>=0.0.9",
]
[project.optional-dependencies]
dev = ["httpx", "pytest", "pytest-asyncio", "ruff"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/media_library_viewer_api"]
[tool.ruff]
line-length = 120
target-version = "py311"
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]