Files
whisper-asr-webservice/pyproject.toml
2023-02-05 01:32:06 +01:00

34 lines
1017 B
TOML

[tool.poetry]
name = "whisper-asr-webservice"
version = "1.0.6"
description = "Whisper ASR Webservice is a general-purpose speech recognition webservice."
homepage = "https://github.com/ahmetoner/whisper-asr-webservice/"
license = "https://github.com/ahmetoner/whisper-asr-webservice/blob/main/LICENCE"
authors = [
"Ahmet Öner",
"Besim Alibegovic",
]
readme = "README.md"
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = "^3.10"
unidecode = "^1.3.4"
uvicorn = { extras = ["standard"], version = "^0.18.2" }
gunicorn = "^20.1.0"
tqdm = "^4.64.1"
transformers = "^4.22.1"
python-multipart = "^0.0.5"
ffmpeg-python = "^0.2.0"
fastapi = "^0.85.0"
fastapi-offline-swagger-ui = { git = "https://github.com/ahmetoner/fastapi-offline-swagger-ui" }
torch = "=1.12.0"
openai-whisper = { git = "https://github.com/openai/whisper.git", tag = "v20230124" }
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"