4d10653790
Toggle voice-to-text tool with Linux and Windows support. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
25 lines
477 B
TOML
25 lines
477 B
TOML
[project]
|
|
name = "blurt"
|
|
version = "0.1.0"
|
|
description = "Toggle voice-to-text tool"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"sounddevice",
|
|
"scipy",
|
|
"requests",
|
|
"pystray",
|
|
"PyGObject; sys_platform == 'linux'",
|
|
"Pillow",
|
|
"pynput; sys_platform == 'win32'",
|
|
"pyperclip",
|
|
"winotify; sys_platform == 'win32'",
|
|
"keyring",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project.scripts]
|
|
blurt = "blurt:main"
|