-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 2.41 KB
/
pyproject.toml
File metadata and controls
93 lines (85 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "recallforge"
version = "0.2.0"
description = "Local multimodal memory for AI agents — cross-modal vision-language search"
readme = "README.md"
requires-python = ">=3.12,<3.14"
license = "MIT"
keywords = [
"search", "semantic", "embedding", "vision-language", "cross-modal",
"mcp", "agent-memory", "local-first", "multimodal", "retrieval",
"rag", "vector-search", "reranking", "mlx", "apple-silicon",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Indexing",
"Typing :: Typed",
]
dependencies = [
"lancedb>=0.20,<1.0",
"pyarrow>=18.0,<20.0",
"pillow>=10.0,<12.0",
"numpy>=2.0,<3.0",
"mcp>=1.0,<2.0",
]
[project.urls]
Homepage = "https://github.com/brianmeyer/recallforge"
Repository = "https://github.com/brianmeyer/recallforge"
Issues = "https://github.com/brianmeyer/recallforge/issues"
[project.optional-dependencies]
torch = [
"torch>=2.0,<3.0",
"torchvision>=0.15,<1.0",
"transformers>=4.40,<5.0",
"scipy>=1.10,<2.0",
"qwen-vl-utils>=0.0.14,<1.0",
]
mlx = [
"mlx>=0.20,<1.0",
"mlx-vlm>=0.1,<1.0",
"qwen-vl-utils>=0.0.14,<1.0",
# transformers 5.x Qwen3VLVideoProcessor requires torchvision for processor loading
"torchvision>=0.15,<1.0",
]
docs = [
"pypdf>=5.0,<6.0",
"pymupdf>=1.24,<2.0",
]
server = [
"starlette>=0.36,<1.0",
"uvicorn>=0.30,<1.0",
]
cuda = [
"torch>=2.0,<3.0",
"torchvision>=0.15,<1.0",
"transformers>=4.40,<5.0",
"scipy>=1.10,<2.0",
"qwen-vl-utils>=0.0.14,<1.0",
]
dev = [
"pytest>=8.0,<9.0",
"pytest-asyncio>=0.24,<1.0",
]
all = ["recallforge[torch,mlx,docs,server]"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
recallforge = "recallforge.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
recallforge = ["py.typed"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]
markers = [
"live: marks tests as live (deselect with '-m \"not live\"')",
"integration: marks tests as integration tests requiring real backend (run with '-m integration')",
]