2022-09-23 10:20:11 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "whisper-streaming"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Yuta Hayashibe <yuta@hayashibe.jp>"]
|
|
|
|
readme = "README.md"
|
2022-09-25 15:42:02 +00:00
|
|
|
packages = [{include = "whispering"}]
|
2022-09-23 10:20:11 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-09-25 09:17:55 +00:00
|
|
|
python = ">=3.8,<3.11"
|
2022-09-29 11:28:38 +00:00
|
|
|
whisper = {git = "https://github.com/openai/whisper.git", rev = '62fe7f1009a534986ac1d32a4aef8c244d029c28'}
|
2022-09-23 10:20:11 +00:00
|
|
|
sounddevice = "^0.4.5"
|
|
|
|
pydantic = "^1.10.2"
|
2022-09-24 11:45:20 +00:00
|
|
|
websockets = "^10.3"
|
2022-09-29 12:59:12 +00:00
|
|
|
tqdm = "*"
|
2022-09-23 10:20:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-09-25 09:17:55 +00:00
|
|
|
black = ">=22.8.0"
|
|
|
|
isort = ">=5.10.1"
|
|
|
|
flake8 = ">=5.0.4"
|
|
|
|
pydocstyle = ">=6.1.1"
|
2022-09-23 10:20:11 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2022-09-25 15:42:02 +00:00
|
|
|
whispering = "whispering.cli:main"
|
2022-09-23 10:20:11 +00:00
|
|
|
|