-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (33 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
34 lines (33 loc) · 909 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
[project]
name = "diff-the-universe"
version = "0.1.0"
description = "Matrix For AI Agents"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"alembic>=1.16.5",
"ariadne>=0.26.2",
"httpx>=0.28.1",
"jsonschema>=4.25.1",
"psycopg[binary,replication]>=3.2.3",
"psycopg2-binary>=2.9.10",
"pydantic>=2.12.0",
"pyjwt>=2.10.1",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"python-dateutil>=2.9.0",
"python-dotenv>=1.1.1",
"python-multipart>=0.0.18",
"requests>=2.32.5",
"ruff>=0.14.0",
"sqlalchemy>=2.0.43",
"starlette>=0.48.0",
"uvicorn>=0.37.0",
]
[tool.pytest.ini_options]
addopts = ["--tb=short"]
markers = [
"conformance: API conformance/parity tests against production APIs",
"external: requires live API credentials (tokens/keys)",
"replica_only: tests against replica only (no external credentials needed)",
]