-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 809 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 809 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openclawd"
version = "0.2.0"
description = "Persistent memory + context engine for Claude Code via MCP. Spiritual port of memory-lancedb-pro and lossless-claw."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.0.0",
"lancedb>=0.6.0",
"pyarrow>=14.0.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
chromadb = ["chromadb>=0.4.0"]
anthropic = ["anthropic>=0.30.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21"]
[project.scripts]
openclawd-server = "openclawd.server:main"
openclawd-index = "scripts.index_vault:main"
openclawd = "openclawd.cli:main"
[tool.setuptools.packages.find]
where = ["src"]