-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 783 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 783 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
[tool.poetry]
name = "rojak"
version = "1.0.0"
description = "Durable and scalable multi-agent orchestration framework."
authors = ["StreetLamb <l.y.z.jerron@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
temporalio = "^1.8.0"
openai = {version = "^1.55.3", optional = true}
qdrant-client = {extras = ["fastembed"], version = "^1.12.1", optional = true}
anthropic = {extras = ["bedrock"], version = "^0.42.0", optional = true}
mcp = "^1.2.0"
[tool.poetry.extras]
openai = ["openai"]
anthropic = ["anthropic"]
qdrant-client = ["qdrant-client"]
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
pytest = "^8.3.4"
pytest-asyncio = "^0.25.0"
pre-commit = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"