-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 951 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 951 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ai-receptionist"
version = "0.1.0"
description = "High-fidelity AI phone receptionist using OpenAI Realtime API and LiveKit"
requires-python = ">=3.11"
dependencies = [
"livekit-agents>=1.5.0",
"livekit-plugins-openai>=1.5.0",
"livekit-plugins-noise-cancellation>=0.2.3",
"pydantic>=2.0",
"pyyaml>=6.0",
"python-dotenv>=1.0",
"aiosmtplib>=3.0",
"resend>=2.0",
"httpx>=0.27",
"aioboto3>=13.0",
"aiofiles>=23.0",
"google-api-python-client>=2.140",
"google-auth>=2.32",
"google-auth-oauthlib>=1.2",
"python-dateutil>=2.9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-mock>=3.12",
"respx>=0.21",
"moto>=5.0",
]
[tool.hatch.build.targets.wheel]
packages = ["receptionist"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"