20 lines
451 B
TOML
20 lines
451 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "voice-agent"
|
|
version = "0.1.0"
|
|
description = "Real-time voice assistant: Azure STT/TTS + Gemma LLM via LiveKit Agents"
|
|
requires-python = ">=3.10,<3.15"
|
|
|
|
dependencies = [
|
|
"livekit-agents~=1.7",
|
|
"livekit-plugins-azure~=1.7",
|
|
"livekit-plugins-openai~=1.7",
|
|
"python-dotenv",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|