-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 933 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 933 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
[project]
name = "waypoint-sdk"
version = "0.1.0"
description = "A lightweight Python SDK for building fault-tolerant LLM agent workflows. It enables agent systems to recover from crashes by replaying execution from checkpoints, without re-invoking deterministic operations like LLM calls or completed tool invocations."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.13.5",
"alembic>=1.18.4",
"asyncpg>=0.31.0",
"fastapi>=0.136.3",
"httpx>=0.28.0",
"pydantic>=2.13.4",
"pydantic-settings>=2.14.1",
"pytest>=9.0.3",
"sqlalchemy>=2.0.49",
"sqlalchemy-json>=0.7.0",
"uuid-utils>=0.16.0",
"uvicorn>=0.48.0",
]
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["sdk*"]
[dependency-groups]
dev = [
"pytest-asyncio>=0.21.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"