-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 817 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 817 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
[project]
name = "voicecode-mcp"
version = "0.1.0"
description = "Voice-native MCP for HiCharlie WebRTC conversations."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiortc>=1.14.0",
"httpx>=0.27.0",
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[project.scripts]
voicecode-mcp = "vocal_agent.mcp_server:main"
voicecode-call = "vocal_agent.voice_session:cli_main"
voicecode-delivery-dispatch = "vocal_agent.delivery:cli_main"
voicecode-visual-runtime = "vocal_agent.visual_runtime.server:cli_main"
vocal-agent-mcp = "vocal_agent.mcp_server:main"
vocal-agent = "vocal_agent.voice_session:cli_main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/vocal_agent"]