49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "livekit-plugins-turn-detector"
|
|
dynamic = ["version"]
|
|
description = "End of utterance detection for LiveKit Agents"
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.10.0"
|
|
authors = [{ name = "LiveKit", email = "hello@livekit.io" }]
|
|
keywords = ["voice", "ai", "realtime", "audio", "video", "livekit", "webrtc"]
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
"Topic :: Multimedia :: Video",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
]
|
|
dependencies = [
|
|
"livekit-agents>=1.6.5",
|
|
"transformers>=4.47.1,!=4.57.2,!=4.57.3", # 4.57.2-4.57.3 have a bug with local_files_only=True (huggingface/transformers#42369)
|
|
"numpy>=1.26",
|
|
"onnxruntime>=1.18; python_version >= '3.11'",
|
|
"onnxruntime>=1.18,<1.24; python_version < '3.11'",
|
|
"jinja2",
|
|
]
|
|
|
|
[project.urls]
|
|
Documentation = "https://docs.livekit.io"
|
|
Website = "https://livekit.io/"
|
|
Source = "https://github.com/livekit/agents"
|
|
|
|
[tool.hatch.version]
|
|
path = "livekit/plugins/turn_detector/version.py"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["livekit"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["/livekit"]
|
|
|
|
[tool.uv]
|
|
exclude-newer = "7 days"
|
|
exclude-newer-package = { livekit-agents = "0 days" }
|