-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 956 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
[project]
name = "loom"
version = "1.0.0"
codename = "Silk"
description = "Multi-agent orchestration platform with dynamic trait-based agent synthesis, local Ollama inference, 3-tier safety, and knowledge graph memory"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"graphiti-core>=0.28.2",
"litellm>=1.83.2",
"mcp>=1.27.0",
"python-dotenv>=1.0.1",
"tree-sitter>=0.25.2",
"tree-sitter-python>=0.25.0",
"tree-sitter-typescript>=0.23.2",
"tree-sitter-javascript>=0.23.0",
"rich>=13.0",
]
[project.scripts]
loom = "loom.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/loom"]
[project.optional-dependencies]
test = ["pytest>=8.0", "pytest-asyncio>=0.23"]
kan = ["torch>=2.0"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = ["integration: requires Docker services (Neo4j, LiteLLM)"]
testpaths = ["tests"]