-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 1.18 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
[project]
name = "sqlite-memory-mcp"
version = "3.5.0"
description = "SQLite-backed MCP Memory Server with hybrid search (BM25 + semantic via sqlite-vec), Intelligence v2, causal event ledger, premium runtime boundary, context state machine, knowledge tiers, WAL concurrent safety, cross-machine bridge sync, and 56 OSS MCP tools"
requires-python = ">=3.10"
dependencies = ["fastmcp>=2.0.0"]
license = {text = "MIT"}
authors = [{name = "rmanov"}]
readme = "README.md"
[project.optional-dependencies]
gui = ["PyQt6>=6.5"]
dev = ["pytest>=7.0"]
speed = ["orjson>=3.9.0"]
vector = ["sqlite-vec>=0.1.6", "sentence-transformers>=3.0.0"]
[project.scripts]
sqlite-memory-mcp = "server:mcp.run"
sqlite-memory-core = "server:mcp.run"
sqlite-memory-session = "session_server:mcp.run"
sqlite-memory-tasks = "task_server:mcp.run"
sqlite-memory-bridge = "bridge_server:mcp.run"
sqlite-memory-collab = "collab_server:mcp.run"
sqlite-memory-entity = "entity_server:mcp.run"
sqlite-memory-intel = "intel_server:mcp.run"
sqlite-memory-unified = "unified_server:mcp.run"
task-tray = "task_tray:main"
memory-digest = "daily_digest:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"