-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 817 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
[project]
name = "context-engine-demos"
version = "0.1.0"
description = "Context Engine Demos – multi-domain demo apps powered by Redis Context Surfaces."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"context-surfaces>=0.0.1",
"fastapi>=0.115.0",
"httpx>=0.28.0",
"langchain-openai>=1.1.12",
"langgraph>=0.2.70",
"langgraph-checkpoint-redis>=0.4.0",
"openai>=1.68.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"python-dotenv>=1.0.1",
"redis>=5.2.0",
"redisvl>=0.16.0",
"uvicorn[standard]>=0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"ruff>=0.8.0",
]
[tool.uv]
package = false
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
pythonpath = [".", "backend"]