- Rename middle-click-reader to read-aloud service - Change hotkey from Ctrl+middle-click to Alt+R - Replace edge-tts with Piper TTS for local neural voices - Update desktop and service files - Add piper-tts dependency - Update tests and setup scripts
19 lines
424 B
TOML
19 lines
424 B
TOML
[project]
|
|
name = "dictation-service"
|
|
version = "0.2.0"
|
|
description = "Voice dictation service with system tray icon and middle-click text-to-speech"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"PyGObject>=3.42.0",
|
|
"pynput>=1.8.1",
|
|
"sounddevice>=0.5.3",
|
|
"vosk>=0.3.45",
|
|
"numpy>=2.3.5",
|
|
"edge-tts>=7.2.3",
|
|
"piper-tts>=1.3.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|