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"
|
|
|
|
packages = [{include = "whisper_streaming"}]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8,<4.0"
|
2022-09-24 01:55:01 +00:00
|
|
|
whisper = {git = "https://github.com/openai/whisper.git", rev = '8cf36f3508c9acd341a45eb2364239a3d81458b9'}
|
2022-09-23 10:20:11 +00:00
|
|
|
sounddevice = "^0.4.5"
|
|
|
|
pydantic = "^1.10.2"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
black = "^22.8.0"
|
|
|
|
isort = "^5.10.1"
|
|
|
|
flake8 = "^5.0.4"
|
|
|
|
pydocstyle = "^6.1.1"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
whisper_streaming = "whisper_streaming.cli:main"
|
|
|
|
|