2022-10-08 14:47:20 +00:00
|
|
|
[misc]
|
|
|
|
stable_version = "0.5.0"
|
|
|
|
|
2022-09-23 10:20:11 +00:00
|
|
|
[tool.poetry]
|
2022-10-05 03:36:49 +00:00
|
|
|
name = "whispering"
|
2022-10-08 15:17:11 +00:00
|
|
|
version = "0.6.0dev0"
|
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-10-09 13:13:32 +00:00
|
|
|
whisper = {git = "https://github.com/openai/whisper.git", rev = 'd18e9ea5dd2ca57c697e8e55f9e654f06ede25d0'}
|
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-10-01 14:21:58 +00:00
|
|
|
torchaudio = "^0.12.1"
|
2022-10-03 14:42:39 +00:00
|
|
|
PySoundFile = {version = "^0.9.0.post1", platform = "windows"}
|
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"
|
2022-10-09 14:56:39 +00:00
|
|
|
pytest = "^7.1.3"
|
2022-09-23 10:20:11 +00:00
|
|
|
|
|
|
|
[build-system]
|
2022-10-12 02:01:27 +00:00
|
|
|
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"
|
|
|
|
|