52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "livekit-plugins-soniox"
|
|
dynamic = ["version"]
|
|
description = "Agent Framework plugin for services using Soniox's API."
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.10.0"
|
|
authors = [{ name = "Soniox", email = "support@soniox.com" }]
|
|
keywords = [
|
|
"webrtc",
|
|
"realtime",
|
|
"audio",
|
|
"livekit",
|
|
"soniox",
|
|
"speech-to-text",
|
|
"text-to-speech",
|
|
"stt",
|
|
"tts",
|
|
]
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
"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"]
|
|
|
|
[project.urls]
|
|
Documentation = "https://docs.livekit.io"
|
|
Website = "https://livekit.io/"
|
|
Source = "https://github.com/livekit/agents"
|
|
|
|
[tool.hatch.version]
|
|
path = "livekit/plugins/soniox/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" }
|