-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
86 lines (78 loc) · 2.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "ringdown"
version = "0.2.0"
description = "Twilio ConversationRelay → configurable LLM voice agents"
readme = "README.md"
requires-python = ">=3.12"
# Direct runtime dependencies
dependencies = [
"audioop-lts>=0.2.2; python_version >= \"3.13\"",
"aiortc>=1.7.0",
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0; platform_system != \"Windows\"",
"uvicorn>=0.29.0; platform_system == \"Windows\"",
"pydantic>=2.7.1",
"python-dotenv>=1.0.1",
"sqlmodel>=0.0.16",
"websockets>=12.0",
"prometheus-client>=0.20.0",
"PyYAML>=6.0.1",
"twilio>=9.0.3",
"litellm>=1.82.0",
"httpx[http2]>=0.27.0",
"pydantic-settings>=2.2.1",
"tenacity>=8.2.3",
"requests>=2.31.0",
"google-auth>=2.0.0",
"google-api-python-client>=2.0.0",
"google-cloud-storage>=2.10.0",
"google-cloud-run>=0.10.0",
"ratelimit>=2.2.1",
"click>=8.0.0",
"typing-extensions>=4.11.0",
"openai>=1.86.0",
"tzdata>=2024.1",
"ruamel.yaml>=0.18.6",
"numpy>=1.26.0",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# Optional / development dependencies
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.0",
"pydub>=0.25.1",
"ruff>=0.4.0",
]
# Tell setuptools to package the FastAPI app package and the shim module (avoid data/ directory)
[tool.setuptools]
license-files = []
py-modules = ["log_love"]
[tool.setuptools.packages.find]
where = ["."]
include = ["app"]
[tool.pytest.ini_options]
filterwarnings = [
'ignore:datetime\.datetime\.utcnow\(\) is deprecated:DeprecationWarning',
]
markers = [
"integration: tests that contact third-party services",
]
norecursedirs = [
"android/.gradle-cache",
"android/.gradle",
"android/.gradle-kotlin",
"android/.gradle-test",
]
testpaths = [
"tests",
]
[tool.ruff]
target-version = "py312"
line-length = 100
select = ["E", "F", "I", "UP", "B", "C4", "SIM"]
ignore = ["E203"]
[tool.ruff.format]
quote-style = "double"