-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
37 lines (35 loc) · 816 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
[project]
name = "speakql"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiofiles>=25.1.0",
"asyncpg>=0.31.0",
"fastapi>=0.136.1",
"fastembed>=0.4.2",
"google-genai>=2.6.0",
"groq>=1.2.0",
"networkx>=3.6.1",
"onnxruntime==1.19.2",
"openai>=2.38.0",
"prometheus-client>=0.25.0",
"pydantic-settings>=2.14.1",
"python-json-logger>=4.1.0",
"qdrant-client>=1.18.0",
"redis>=7.4.0",
"sqlalchemy[asyncio]>=2.0.49",
"sqlglot>=30.8.0",
"uvicorn[standard]>=0.47.0",
]
[dependency-groups]
dev = [
"aiosqlite>=0.22.1",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["backend/tests"]
pythonpath = ["backend"]