2026-04-06 20:20:57 +02:00
|
|
|
[project]
|
|
|
|
|
name = "whisper-local"
|
2026-04-12 12:54:14 +02:00
|
|
|
version = "1.1.0"
|
2026-04-06 20:20:57 +02:00
|
|
|
requires-python = ">=3.13"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"faster-whisper>=1.1.0",
|
|
|
|
|
"sounddevice>=0.5.0",
|
|
|
|
|
"numpy>=2.0.0",
|
2026-04-08 10:24:39 +02:00
|
|
|
"evdev>=1.7.0; sys_platform == 'linux'",
|
|
|
|
|
"pynput>=1.7.0; sys_platform == 'win32'",
|
2026-04-08 10:43:14 +02:00
|
|
|
"pywin32>=306; sys_platform == 'win32'",
|
2026-04-10 21:06:34 +02:00
|
|
|
"pystray>=0.19.0; sys_platform == 'win32'",
|
|
|
|
|
"Pillow>=10.0.0; sys_platform == 'win32'",
|
|
|
|
|
"sv-ttk>=2.6.0; sys_platform == 'win32'",
|
|
|
|
|
"darkdetect>=0.8.0; sys_platform == 'win32'",
|
2026-04-06 20:20:57 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
whisper-local = "whisper_local.__main__:main"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0.0",
|
|
|
|
|
"pytest-asyncio>=0.24.0",
|
|
|
|
|
]
|
2026-04-11 12:01:02 +02:00
|
|
|
build = [
|
|
|
|
|
"pyinstaller>=6.0",
|
|
|
|
|
]
|