feat: Initial commit
This commit is contained in:
commit
1e5654e591
10 changed files with 1336 additions and 0 deletions
36
pyproject.toml
Normal file
36
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue