-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1007 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1007 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
[tool.poetry]
name = "langgraph_checkpoint_kurrentdb"
version = "0.1.3"
description = "KurrentDB checkpoint implementation for LangGraph"
authors = ["Lougarou <yogisawesome@gmail.com>"]
readme = "README.md"
packages = [{ include = "langgraph_checkpoint_kurrentdb", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
# Core runtime dependencies
langgraph = ">=0.0.15"
langchain-core = ">=0.1.0"
kurrentdbclient = "^1.0b4"
pandas = ">=2.0.0"
matplotlib = ">=3.0.0"
langgraph-checkpoint = "^2.0.15"
notebook = "^7.4.0"
# OpenTelemetry dependencies
opentelemetry-api = ">=1.20.0"
opentelemetry-sdk = ">=1.20.0"
opentelemetry-exporter-otlp-proto-grpc = ">=1.20.0"
[tool.poetry.group.test.dependencies]
# Test-specific dependencies
pytest = ">=7.0.0"
pytest-asyncio = "^0.26.0" # Consolidated version
docker = "^6.1.0"
requests = "^2.31.0"
pytest-cov = ">=4.1.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"