-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (65 loc) · 1.94 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
69
70
71
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project]
name = "daily-python"
description = "Daily Client SDK for Python"
license = { text = "BSD 2-Clause License" }
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["webrtc", "audio", "video", "ai"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Communications :: Conferencing",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[project.urls]
Home = "https://docs.daily.co/guides/products/ai-toolkit"
Documentation = "https://reference-python.daily.co"
Source = "https://github.com/daily-co/daily-python"
Website = "https://daily.co"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.uv]
# Don't build/install daily-python itself on `uv sync`; the wheel is built
# explicitly with maturin. `uv sync` just provides the build/docs tooling.
package = false
[dependency-groups]
dev = [
"maturin==1.13.1",
"ruff>=0.12.11,<1",
"setuptools==78.1.1",
"sphinx==7.4.7",
"sphinx-rtd-theme==2.0.0",
"toml==0.10.2",
"patchelf==0.17.2.2; sys_platform == 'linux'",
]
demos = [
"celery~=5.5.3",
"deepgram-sdk~=5.3.0",
"flask~=3.1.2",
"google-cloud-speech~=2.34.0",
"google-cloud-texttospeech~=2.33.0",
"numpy~=2.3.5",
"openai~=2.8.0",
"pillow~=12.2.0",
"pyaudio~=0.2.14",
"pycairo~=1.29.0",
"pygobject~=3.54.5",
"pyside6~=6.10.0",
"redis~=7.0.1",
"yolov5~=7.0.14",
"aiohttp~=3.13.2",
"pydantic~=2.12.4",
"python-dotenv~=1.2.1",
]
[tool.uv.dependency-groups]
# The published package supports older Pythons (`requires-python` above), but
# the build/docs tooling and the demos need newer ones.
dev = { requires-python = ">=3.10" }
demos = { requires-python = ">=3.11" }