55 lines
1.6 KiB
TOML
55 lines
1.6 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=64", "setuptools_scm>=8"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "dailyai"
|
|
dynamic = ["version"]
|
|
description = "An open source framework for real-time, multi-modal, conversational AI applications"
|
|
license = { text = "BSD 2-Clause License" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
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"
|
|
]
|
|
dependencies = [
|
|
"aiohttp~=3.9.0",
|
|
"numpy~=1.26.0",
|
|
"Pillow~=10.2.0",
|
|
"typing-extensions~=4.10.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Source = "https://github.com/daily-co/dailyai"
|
|
Website = "https://daily.co"
|
|
|
|
[project.optional-dependencies]
|
|
anthropic = [ "anthropic~=0.20.0" ]
|
|
azure = [ "azure-cognitiveservices-speech~=1.36.0" ]
|
|
daily = [ "daily-python~=0.7.0" ]
|
|
examples = [ "python-dotenv~=1.0.0", "flask~=3.0.0", "flask_cors~=4.0.0" ]
|
|
fal = [ "fal~=0.12.0" ]
|
|
local = [ "pyaudio~=0.2.0" ]
|
|
openai = [ "openai~=1.14.0" ]
|
|
playht = [ "pyht~=0.0.26" ]
|
|
silero = [ "torch~=2.2.0", "torchaudio~=2.2.0" ]
|
|
websocket = [ "websockets~=12.0" ]
|
|
whisper = [ "faster_whisper~=1.0.0" ]
|
|
|
|
[tool.setuptools.packages.find]
|
|
# All the following settings are optional:
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
|
|
[tool.setuptools_scm]
|
|
local_scheme = "no-local-version"
|