-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (47 loc) · 1.23 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
[project]
name = "vici"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"alembic>=1.18.4",
"asyncpg>=0.31.0",
"braintrust>=0.0.100",
"fastapi>=0.135.1",
"greenlet>=3.3.2",
"openai>=2.0.0,<3.0.0",
"opentelemetry-api>=1.40.0",
"opentelemetry-exporter-otlp>=1.40.0",
"opentelemetry-instrumentation-fastapi>=0.61b0",
"opentelemetry-instrumentation-sqlalchemy>=0.61b0",
"opentelemetry-sdk>=1.40.0",
"pinecone[asyncio]>=8.1.0",
"prometheus-fastapi-instrumentator>=7.1.0",
"pydantic-settings>=2.13.1",
"python-dotenv>=1.2.2",
"python-multipart>=0.0.22",
"sqlmodel>=0.0.37",
"structlog>=25.5.0",
"temporalio>=1.24.0",
"tenacity>=8.0.0",
"twilio>=9.10.2",
"uvicorn[standard]>=0.41.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"src/extraction/prompts.py" = ["E501"] # Long lines are intentional in LLM prompt strings
[dependency-groups]
dev = [
"aiosqlite>=0.22.1",
"httpx>=0.28.1",
"psycopg2-binary>=2.9.11",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
]