31 lines
592 B
TOML
31 lines
592 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,<3.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.4.0",
|
|
"pytest-asyncio>=1.2.0",
|
|
"httpx>=0.28.1",
|
|
"requests>=2.32.3,<3.0.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=8.4.0",
|
|
"pytest-asyncio>=1.2.0",
|
|
"httpx>=0.28.1",
|
|
"requests>=2.32.3,<3.0.0",
|
|
]
|