-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "speaker"
version = "0.1.0"
description = "High-quality local TTS for AI coding agents — speak responses aloud via kokoro-onnx"
authors = [{name = "Andy Taylor"}]
requires-python = ">=3.10"
license = "MIT"
readme = "README.md"
keywords = ["tts", "kokoro", "mcp", "kiro", "claude", "speech"]
dependencies = [
"kokoro-onnx>=0.4.0",
"sounddevice>=0.5.0",
"numpy>=1.24.0",
"mcp[cli]>=1.0.0",
]
[project.scripts]
speak-mcp = "speaker.mcp_server:main"
[project.optional-dependencies]
dev = ["pytest>=7.4.0", "pytest-cov>=4.0.0", "ruff>=0.1.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/speaker"]
[tool.pytest.ini_options]
addopts = "--cov=speaker --cov-report=term-missing"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "TCH"]