40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[project]
|
|
name = "whisper-local"
|
|
version = "1.2.0"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"faster-whisper>=1.1.0",
|
|
"sounddevice>=0.5.0",
|
|
"numpy>=2.0.0",
|
|
"evdev>=1.7.0; sys_platform == 'linux'",
|
|
"PyGObject>=3.50; sys_platform == 'linux'",
|
|
"dbus-next>=0.2.3; sys_platform == 'linux'",
|
|
"pynput>=1.7.0; sys_platform == 'win32'",
|
|
"pywin32>=306; sys_platform == 'win32'",
|
|
"winrt-Windows.Media.Control>=3.2.1; sys_platform == 'win32'",
|
|
"winrt-Windows.Foundation>=3.2.1; sys_platform == 'win32'",
|
|
"winrt-Windows.Foundation.Collections>=3.2.1; sys_platform == 'win32'",
|
|
"pystray>=0.19.0",
|
|
"Pillow>=10.0.0",
|
|
"sv-ttk>=2.6.0",
|
|
"darkdetect>=0.8.0",
|
|
"notify-py>=0.3.43",
|
|
"comtypes>=1.4.0; sys_platform == 'win32'",
|
|
]
|
|
|
|
[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",
|
|
]
|
|
build = [
|
|
"pyinstaller>=6.0",
|
|
]
|