1
0
Fork 0

feat: Initial commit

This commit is contained in:
mrsobakin 2026-02-24 13:14:57 +03:00
commit 1e5654e591
No known key found for this signature in database
GPG key ID: 325CBF665E4FFD6E
10 changed files with 1336 additions and 0 deletions

36
pyproject.toml Normal file
View file

@ -0,0 +1,36 @@
[project]
name = "speechd"
version = "1.2.5"
description = "Speech-to-Text daemon with Groq Whisper API"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"groq>=0.4.0",
"numpy>=1.24.0",
"sounddevice>=0.4.6",
"soundfile>=0.12.0",
"torch>=2.0.0",
"torchaudio>=2.0.0",
]
[project.scripts]
speechd = "speechd.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/speechd"]
[tool.hatch.build.targets.wheel.shared-scripts]
"scripts/speechd-toggle" = "speechd-toggle"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"