faster-whisper-server / pyproject.toml
Fedir Zadniprovskyi
switch to using uv
e111d94
raw
history blame
607 Bytes
[project]
name = "faster-whisper-server"
requires-python = ">=3.12,<3.13"
dependencies = [
"pydantic",
"fastapi",
"uvicorn",
"python-multipart",
"soundfile",
"pydantic-settings",
"numpy",
"faster-whisper",
"huggingface-hub",
"httpx-sse",
"httpx",
"gradio",
]
[project.optional-dependencies]
dev = ["ruff", "pytest", "pytest-xdist"]
other = ["youtube-dl@git+https://github.com/ytdl-org/youtube-dl.git", "openai", "aider-chat"]
[tool.ruff]
target-version = "py312"
[tool.pyright]
# typeCheckingMode = "strict"
pythonVersion = "3.12"
pythonPlatform = "Linux"