mirror of
https://github.com/shirayu/whispering.git
synced 2024-11-13 04:02:00 +00:00
32 lines
761 B
TOML
32 lines
761 B
TOML
[tool.poetry]
|
|
name = "whispering"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Yuta Hayashibe <yuta@hayashibe.jp>"]
|
|
readme = "README.md"
|
|
packages = [{include = "whispering"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8,<3.11"
|
|
whisper = {git = "https://github.com/openai/whisper.git", rev = '0b1ba3d46ebf7fe6f953acfd8cad62a4f851b49f'}
|
|
sounddevice = "^0.4.5"
|
|
pydantic = "^1.10.2"
|
|
websockets = "^10.3"
|
|
tqdm = "*"
|
|
torchaudio = "^0.12.1"
|
|
PySoundFile = {version = "^0.9.0.post1", platform = "windows"}
|
|
|
|
|
|
[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]
|
|
whispering = "whispering.cli:main"
|
|
|