-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "livekit-plugins-phonic"
dynamic = ["version"]
description = "Agent Framework plugin for services from Phonic"
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", "phonic"]
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.5.1",
"websockets>=11.0",
"aiohttp>=3.8.0",
"phonic>=0.31.8"
]
[project.urls]
Documentation = "https://docs.livekit.io"
Website = "https://livekit.io/"
Source = "https://github.com/livekit/agents"
[tool.hatch.version]
path = "livekit/plugins/phonic/version.py"
[tool.hatch.build.targets.wheel]
packages = ["livekit"]
[tool.hatch.build.targets.sdist]
include = ["/livekit"]