whispering/pyproject.toml

51 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2022-10-08 14:47:20 +00:00
[misc]
2023-01-06 16:19:07 +00:00
stable_version = "0.6.6"
2022-10-08 14:47:20 +00:00
2022-09-23 10:20:11 +00:00
[tool.poetry]
2022-10-05 03:36:49 +00:00
name = "whispering"
2023-01-06 16:20:03 +00:00
version = "0.6.7pre0"
2022-10-08 14:47:20 +00:00
description = "Streaming transcriber with whisper"
license = "MIT"
2022-09-23 10:20:11 +00:00
authors = ["Yuta Hayashibe <yuta@hayashibe.jp>"]
readme = "README.md"
2022-10-08 14:47:20 +00:00
repository = "https://github.com/shirayu/whispering.git"
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-12-07 11:14:44 +00:00
whisper = {git = "https://github.com/openai/whisper.git", rev = 'fd8f80c8b880dd7c284c109ca7f03dbe978bc532'}
2022-09-23 10:20:11 +00:00
sounddevice = "^0.4.5"
pydantic = "^1.10.4"
websockets = "^10.4"
tqdm = "*"
torchaudio = "^0.13.1"
2023-01-06 16:27:36 +00:00
torch = ">=1.13.1"
2022-10-03 14:42:39 +00:00
PySoundFile = {version = "^0.9.0.post1", platform = "windows"}
2023-03-01 14:47:43 +00:00
numpy = "^1.24.2"
ffmpeg-python = "^0.2.0"
transformers = "^4.26.1"
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-10-08 14:47:20 +00:00
toml = "^0.10.2"
pytest = "^7.2.1"
2022-09-23 10:20:11 +00:00
[build-system]
requires = ["poetry-core>=1.3.2"]
2022-09-23 10:20:11 +00:00
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
2022-10-08 14:47:20 +00:00
[tool.pyright]
pythonVersion = "3.8"
typeCheckingMode = "basic"
exclude = [".venv", "**/node_modules", "**/__pycache__",]
reportPrivateImportUsage = "information"
reportUnusedVariable="warning"