-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.58 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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "turbo-memory-mcp"
version = "0.3.2"
description = "Local-first MCP memory server for AI coding agents with compact retrieval and project/global scopes."
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"mcp",
"model-context-protocol",
"ai-agents",
"agent-memory",
"semantic-search",
"retrieval",
"codex",
"claude-code",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"lancedb>=0.30.1,<0.31",
"markdown-it-py>=4.0.0,<5.0",
"mcp>=1.12.4,<2.0",
"sentence-transformers>=5.3.0,<6.0",
]
[project.urls]
Homepage = "https://github.com/Lexus2016/turbo_quant_memory"
Documentation = "https://github.com/Lexus2016/turbo_quant_memory#readme"
Repository = "https://github.com/Lexus2016/turbo_quant_memory"
Issues = "https://github.com/Lexus2016/turbo_quant_memory/issues"
Changelog = "https://github.com/Lexus2016/turbo_quant_memory/releases"
[project.scripts]
turbo-memory-mcp = "turbo_memory_mcp.cli:main"
[dependency-groups]
dev = [
"pytest>=8.3.0,<9.0",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]