Files
wov-node-whisper/pyproject.toml
T

26 lines
567 B
TOML

[project]
name = "wov-node-whisper"
version = "0.1.0"
description = "WOV faster-whisper ASR node"
requires-python = ">=3.11"
dependencies = [
"faster-whisper>=1.2.1",
"nvidia-cublas-cu12>=12.9.2.10",
"nvidia-cudnn-cu12>=9.24.0.43",
"wov-sdk",
]
[tool.uv.sources]
wov-sdk = { path = "../wov-sdk" }
[dependency-groups]
dev = ["pytest", "pytest-cov"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "--cov=wov_node_whisper --cov-report=term-missing --cov-fail-under=100"
[tool.setuptools]
packages = ["wov_node_whisper"]