-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.48 KB
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
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "claude-smart"
version = "0.2.43"
description = "Self-improving Claude Code and Codex plugin — turns corrections into durable skills via reflexio"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
# Core Reflexio client/backend package. This is the PyPI baseline used by
# normal installs; vendor releases may override it after uv sync by
# installing plugin/vendor/reflexio. Keep in sync via
# scripts/sync-reflexio-dep.py.
"reflexio-ai>=0.2.23",
# Needed when Reflexio runs the local embedding provider (ONNXMiniLM_L6_V2).
# Pulls in onnxruntime + tokenizers; the ~80 MB ONNX model itself is
# downloaded on first use, not at install time.
"chromadb>=0.5",
"einops>=0.8.0",
# Native SQLite vector KNN for local storage. Reflexio can fall back to
# Python ranking without this, but installed claude-smart should include
# the accelerator by default.
"sqlite-vec>=0.1.6",
]
[project.scripts]
claude-smart-hook = "claude_smart.hook:main"
claude-smart = "claude_smart.cli:main"
claude-smart-optimizer-assistant = "claude_smart.optimizer_assistant:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/claude_smart"]
[tool.hatch.build.targets.sdist]
include = [
"src/claude_smart",
"pyproject.toml",
"README.md",
"LICENSE",
]
[tool.pytest.ini_options]
testpaths = ["../tests"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
]