21 lines
514 B
TOML
21 lines
514 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "agent-starter-python"
|
|
version = "0.1.0"
|
|
description = "Simple voice AI assistant built with LiveKit Agents for Python"
|
|
requires-python = ">=3.9"
|
|
|
|
dependencies = [
|
|
"livekit-agents[openai,turn-detector,silero,cartesia,deepgram]~=1.0",
|
|
"livekit-plugins-noise-cancellation~=0.2.1",
|
|
"python-dotenv",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src" |