-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "speechify-livekit"
dynamic = ["version"]
description = "Speechify plugin for LiveKit Agents"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10.0"
authors = [{ name = "Speechify", email = "hello@speechify.com" }]
keywords = ["voice", "ai", "realtime", "audio", "video", "livekit", "webrtc", "speechify", "tts"]
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 :: Only",
]
dependencies = ["livekit-agents>=1.6.4", "speechify-api>=2.0.0"]
[project.urls]
Documentation = "https://docs.speechify.ai"
Website = "https://speechify.com/"
Source = "https://github.com/Speechify-AI/livekit-plugin-python"
Issues = "https://github.com/Speechify-AI/livekit-plugin-python/issues"
[dependency-groups]
dev = ["pytest>=8", "pytest-asyncio>=0.24"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = ["plugin: mark a test as belonging to a specific plugin"]
[tool.hatch.version]
path = "livekit/plugins/speechify/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" }