-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "statewave"
version = "1.3.0"
description = "Open-source memory runtime for AI agents — durable, structured context with provenance."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
]
dependencies = [
"fastapi>=0.138.0,<1",
"uvicorn[standard]>=0.49.0,<1",
"pydantic>=2.13.4,<3",
"pydantic-settings>=2.14.2,<3",
"sqlalchemy[asyncio]>=2.0.51,<3",
"asyncpg>=0.31.0,<1",
"alembic>=1.18.4,<2",
"pgvector>=0.4.2,<1",
"tiktoken>=0.13.0,<1",
"structlog>=26.1.0,<27",
"pyyaml>=6.0.3,<7",
]
[project.optional-dependencies]
dev = [
"pytest>=9.1.1,<10",
"pytest-asyncio>=1.4.0,<2",
"httpx>=0.28.1,<1",
"ruff>=0.15.19,<1",
]
llm = [
"litellm>=1.89.4,<2",
]
otel = [
"opentelemetry-api>=1.43.0,<2",
"opentelemetry-sdk>=1.43.0,<2",
"opentelemetry-exporter-otlp>=1.43.0,<2",
]
[project.urls]
Homepage = "https://statewave.ai"
Repository = "https://github.com/smaramwbc/statewave"
Issues = "https://github.com/smaramwbc/statewave/issues"
Documentation = "https://github.com/smaramwbc/statewave-docs"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["server"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
testpaths = ["tests"]
markers = [
"smoke: live-stack smoke tests (require docker compose; see make test-cold)",
]