34 lines
783 B
TOML
34 lines
783 B
TOML
[project]
|
|
name = "audio"
|
|
version = "0.1.0"
|
|
description = "Speech-to-text transcription service using faster-whisper"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"python-multipart>=0.0.9",
|
|
"pydantic>=2.0",
|
|
"pydantic-settings>=2.0",
|
|
"faster-whisper>=1.0.0",
|
|
"prometheus-fastapi-instrumentator>=7.0.0",
|
|
"opentelemetry-instrumentation-fastapi>=0.50b0",
|
|
"opentelemetry-exporter-otlp-proto-grpc>=1.30.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-cov>=4.0",
|
|
"ruff>=0.8",
|
|
"httpx>=0.27.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/audio"]
|
|
|
|
[tool.ruff]
|
|
extend = "../../ruff.toml"
|