[project] name = "local-transcriber" version = "0.1.0" description = "Local CLI tool for audio/video transcription using faster-whisper" license = "MIT" requires-python = ">=3.13" dependencies = [ "typer>=0.24.1,<1", "rich>=14.3.3,<15", "faster-whisper>=1.2.1,<2", "socksio>=1.0.0,<2", "nvidia-cublas-cu12>=12.4,<13; sys_platform == 'linux' and platform_machine == 'x86_64'", "openvino-genai>=2026.0.0.0,<2026.1; sys_platform != 'darwin' and (platform_machine == 'x86_64' or platform_machine == 'AMD64')", "onnx-asr[cpu,hub]>=0.12,<0.13", "onnxruntime>=1.28,<2", ] [project.scripts] transcribe = "local_transcriber.cli:app" [dependency-groups] dev = [ "pytest", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.pytest.ini_options] testpaths = ["tests"] [tool.hatch.build.targets.wheel] packages = ["src/local_transcriber"]