-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (79 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (79 loc) · 2.46 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "graph-mem"
version = "0.1.0"
description = "Production-grade Graph-RAG MCP server with local embeddings — persistent knowledge graphs for any LLM-powered CLI agent"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "graph-mem contributors" },
]
keywords = ["mcp", "graph-mem", "knowledge-graph", "embeddings", "sqlite", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0",
"sqlite-vec>=0.1.6",
"click>=8.0",
"python-ulid>=3.0.0",
"aiosqlite>=0.20.0",
"numpy>=1.24",
]
[project.optional-dependencies]
embeddings = ["sentence-transformers>=2.0"]
onnx = ["onnxruntime>=1.15"]
ui = ["aiohttp>=3.9"]
full = ["sentence-transformers>=2.0", "onnxruntime>=1.15", "aiohttp>=3.9"]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23",
"pytest-aiohttp>=1.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"mypy>=1.10",
"coverage>=7.0",
]
[project.scripts]
graph-mem = "graph_mem.cli.main:cli"
[project.urls]
Homepage = "https://github.com/Sathvik-1007/GraphMem-MCP"
Documentation = "https://github.com/Sathvik-1007/GraphMem-MCP#readme"
Repository = "https://github.com/Sathvik-1007/GraphMem-MCP"
Issues = "https://github.com/Sathvik-1007/GraphMem-MCP/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/graph_mem"]
[tool.hatch.build.targets.wheel.force-include]
"src/graph_mem/ui/frontend" = "graph_mem/ui/frontend"
"skills/graph-mem" = "graph_mem/_bundled_skills/graph-mem"
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "SIM", "TCH", "RUF"]
[tool.ruff.lint.isort]
known-first-party = ["graph_mem"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = [
"ignore:Exception in thread.*_connection_worker_thread:pytest.PytestUnhandledThreadExceptionWarning",
]