forked from mbailey/voicemode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
140 lines (130 loc) · 3.16 KB
/
pyproject.toml
File metadata and controls
140 lines (130 loc) · 3.16 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "voice-mode"
dynamic = ["version"]
description = "VoiceMode - Voice interaction capabilities for AI assistants (formerly voice-mcp)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "mbailey", email = "mbailey@example.com"},
]
keywords = ["mcp", "voice", "livekit", "speech", "tts", "stt", "ai", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"uv>=0.4.0",
"fastmcp>=2.0.0",
"numpy",
"sounddevice",
"scipy",
"openai>=1.0.0",
"pydub",
"audioop-lts; python_version >= '3.13'",
"simpleaudio",
"httpx",
"psutil>=5.9.0",
"setuptools", # Required for pkg_resources used by webrtcvad
"webrtcvad>=2.0.10",
"livekit>=0.13.1",
"livekit-agents>=0.10.2",
"livekit-plugins-openai>=0.10.1",
"livekit-plugins-silero>=0.6.5",
"click>=8.0.0",
]
[project.optional-dependencies]
dev = [
"build>=1.0.0",
"twine>=4.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
]
notebooks = [
"gradio>=4.0.0",
"jupyter>=1.0.0",
"notebook>=7.0.0",
"pandas>=2.0.0",
]
scripts = [
"flask>=3.0.0",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material[imaging]>=9.0.0",
"pymdown-extensions>=10.0",
"mkdocs-git-revision-date-localized-plugin>=1.2.0",
"mkdocs-minify-plugin>=0.7.0",
"mkdocs-gen-files>=0.5.0",
]
[project.urls]
Homepage = "https://github.com/mbailey/voicemode"
Repository = "https://github.com/mbailey/voicemode"
Issues = "https://github.com/mbailey/voicemode/issues"
[project.scripts]
voice-mode = "voice_mode.cli:voice_mode"
voicemode = "voice_mode.cli:voice_mode"
[tool.hatch.build.targets.wheel]
packages = ["voice_mode"]
exclude = [
"**/__pycache__",
"**/*.pyc",
"**/*.pyo",
"**/*.pyd",
"**/.DS_Store",
"**/*.log",
"**/node_modules",
"**/.next/cache",
"**/tests",
"**/.env",
"**/.git",
]
[tool.hatch.build.hooks.custom]
path = "build_hooks.py"
[tool.hatch.build.targets.sdist]
include = [
"/voice_mode",
"/README.md",
"/LICENSE",
"/pyproject.toml",
"/CHANGELOG.md",
"/build_hooks.py",
]
exclude = [
"**/__pycache__",
"**/*.pyc",
"**/*.pyo",
"**/*.pyd",
"**/.DS_Store",
"**/*.log",
]
[tool.hatch.version]
path = "voice_mode/__version__.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
# Exclude manual test directory
addopts = "--ignore=tests/manual"