-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "getflex"
version = "0.10.0"
description = "Knowledge engine for AI agents. Compile any data source into a queryable SQLite cell with embeddings, graph intelligence, and full-text search."
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
keywords = ["vector-search", "sql", "embeddings", "ai-agents", "mcp", "sqlite", "knowledge-base", "retrieval", "semantic-search"]
dependencies = [
"numpy>=2.0,<3",
"networkx>=3.0,<4",
"scikit-learn>=1.5,<2",
"onnxruntime>=1.17,<2",
"tokenizers>=0.19,<1",
"pyyaml>=6.0,<7",
"rich>=13.0,<14",
"tzlocal>=5.0,<6",
"mcp>=1.0,<2",
"starlette>=0.49.1,<1",
"uvicorn>=0.30,<1",
]
[project.optional-dependencies]
[project.urls]
Homepage = "https://getflex.dev"
Repository = "https://github.com/damiandelmas/flex"
Paper = "https://arxiv.org/abs/2603.22587"
[project.scripts]
flex = "flex.cli:main"
[tool.setuptools.package-data]
flex = [
"modules/claude_code/**/*.sql",
"modules/soma/**/*.sql",
"retrieve/presets/general/*.sql",
"onnx/*.json",
"onnx/vocab.txt",
"ai/agents/trace.md",
"ai/commands/flex/agent.md",
"ai/commands/flex/search.md",
"ai/skills/flex/**/*",
]
[tool.setuptools.exclude-package-data]
flex = ["onnx/model.onnx", "onnx/model.onnx.data"]
[tool.setuptools.packages.find]
include = ["flex*"]
exclude = ["flex_embed*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: In-memory SQLite, no external deps",
"pipeline: Needs ONNX model on disk",
"security: Authorizer and input validation",
"vec_ops: Vector operations and search",
"enrichment: Graph, fingerprint, delegation",
"sync: Unified sync pipeline",
"soma: SOMA identity module",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"