31 lines
573 B
TOML
31 lines
573 B
TOML
[project]
|
|
name = "ffmpeg-worker"
|
|
version = "1.0.0"
|
|
description = "Dockerized FFmpeg worker with REST API"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.123.0",
|
|
"uvicorn[standard]>=0.38.0",
|
|
"pydantic>=2.12.5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
"httpx>=0.28.1",
|
|
"requests>=2.32.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=8.3.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
"httpx>=0.28.1",
|
|
"requests>=2.32.0",
|
|
]
|