Uzbek-STT / pyproject.toml
bintuulugbek's picture
feat(m1): deployable FastAPI skeleton for Uzbek STT
0978d28
Raw
History Blame Contribute Delete
808 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "uzbek-stt"
version = "0.1.0"
description = "Deployable Uzbek speech-to-text service: FastAPI API + Gradio demo + honest 3-engine benchmark."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"pydantic-settings>=2.5",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6",
"mypy>=1.11",
"pytest>=8.3",
"httpx>=0.27",
]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"