-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "unpod"
version = "0.2.0"
description = "Developer SDK for Unpod voice infrastructure — management + connectivity + adapters."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [{ name = "Unpod", email = "parvinder@unpod.ai" }]
dependencies = [
"pydantic>=2.5",
"httpx>=0.27",
"websockets>=13",
"typing-extensions>=4.10",
"python-dotenv>=1.2.2",
]
[project.urls]
Homepage = "https://unpod.ai"
Documentation = "https://github.com/unpod-ai/unpod-python-sdk/tree/main/docs"
Repository = "https://github.com/unpod-ai/unpod-python-sdk"
[project.optional-dependencies]
observability = ["langfuse>=2.0"]
dialog = ["superdialog>=0.2,<0.3"]
langchain = ["langchain-core>=0.3"]
mcp = ["mcp>=0.9"]
playground = [
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"loguru>=0.7",
"superdialog>=0.2,<0.3",
"livekit-agents>=1.0,<2",
]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"anyio>=4",
"ruff>=0.4",
"pyrefly>=0.1",
"superdialog>=0.2,<0.3",
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"loguru>=0.7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/unpod"]
# superdialog installs from PyPI by default so a fresh clone is self-contained
# (no sibling ../superdialog checkout required). The voice-agent playground now
# lives in the sibling superdialog repo (../superdialog/playground/) — run it
# from there with `task pg`. To co-develop superdialog locally against this SDK,
# layer an editable overlay for a single run instead of pinning a path source
# here:
# uv run --extra dialog --with-editable ../superdialog python your_script.py
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]