Files
2026-07-13 13:39:38 +08:00

55 lines
1.6 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "livekit-plugins-aws"
dynamic = ["version"]
description = "LiveKit Agents Plugin for services from AWS"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10.0"
authors = [{ name = "LiveKit", email = "hello@livekit.io" }]
keywords = ["aws", "nova", "sonic", "voice", "ai", "realtime", "audio", "video", "livekit"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"livekit-agents>=1.6.5",
"aioboto3>=14.1.0",
"aws_sdk_transcribe_streaming>=0.2.0; python_version >= '3.12'",
]
[project.optional-dependencies]
realtime = [
"aws-sdk-bedrock-runtime>=0.2.0; python_version >= '3.12'",
"aws-sdk-signers>=0.0.3; python_version >= '3.12'",
"boto3>1.35.10",
]
[project.urls]
Documentation = "https://docs.livekit.io"
Website = "https://livekit.io/"
Source = "https://github.com/livekit/agents"
[tool.hatch.version]
path = "livekit/plugins/aws/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" }