-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 911 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 911 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
42
43
44
[project]
name = "matching-engine"
version = "0.1.0"
description = "P2P amber alert matching engine"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"sqlalchemy[asyncio]>=2.0.27",
"asyncpg>=0.29",
"alembic>=1.13",
"pgvector>=0.2.5",
"pydantic>=2.6",
"pydantic-settings>=2.2",
"python-ulid>=2.4",
"python-jose[cryptography]>=3.3",
"bcrypt>=4.0",
"anthropic>=0.40.0",
"claude-agent-sdk>=0.1.68",
"twilio>=9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"httpx>=0.26",
"ruff>=0.3",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
asyncio_default_test_loop_scope = "session"
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 100
[dependency-groups]
dev = [
"asgi-lifespan>=2.1.0",
]