-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (107 loc) · 3.27 KB
/
pyproject.toml
File metadata and controls
117 lines (107 loc) · 3.27 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "synaptic-memory"
version = "0.9.0"
description = "Brain-inspired knowledge graph for LLM agents — PPR, evidence chain, auto-ontology (rule/embedding/LLM), Hebbian learning, memory consolidation."
license = "MIT"
requires-python = ">=3.12"
readme = "README.md"
authors = [{ name = "Son Seongjun" }]
keywords = [
"knowledge-graph",
"agent-memory",
"auto-ontology",
"hebbian-learning",
"personalized-pagerank",
"evidence-chain",
"memory-consolidation",
"hybrid-search",
"ontology",
"mcp",
"neo4j",
"qdrant",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Database :: Database Engines/Servers",
"Framework :: AsyncIO",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/PlateerLab/synaptic-memory"
Repository = "https://github.com/PlateerLab/synaptic-memory"
Documentation = "https://github.com/PlateerLab/synaptic-memory/blob/main/README.md"
Changelog = "https://github.com/PlateerLab/synaptic-memory/blob/main/CHANGELOG.md"
[project.scripts]
synaptic-mcp = "synaptic.mcp.server:main"
[project.optional-dependencies]
sqlite = ["aiosqlite>=0.20"]
postgresql = ["asyncpg>=0.30", "pgvector>=0.3"]
neo4j = ["neo4j>=5.25"]
qdrant = ["qdrant-client>=1.12"]
minio = ["miniopy-async>=1.21"]
embedding = ["aiohttp>=3.9"]
mcp = ["mcp[cli]>=1.5", "aiosqlite>=0.20"]
scale = [
"neo4j>=5.25",
"qdrant-client>=1.12",
"miniopy-async>=1.21",
"aiohttp>=3.9",
]
all = [
"aiosqlite>=0.20",
"asyncpg>=0.30",
"pgvector>=0.3",
"neo4j>=5.25",
"qdrant-client>=1.12",
"miniopy-async>=1.21",
"aiohttp>=3.9",
"mcp[cli]>=1.5",
]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.24",
"ruff>=0.8",
"pyright>=1.1",
]
eval = [
"deepeval>=2.0",
"openai>=1.0",
"python-dotenv>=1.2.2",
]
[tool.hatch.build.targets.sdist]
exclude = [".claude/", "tests/benchmark/data/", "tests/qa/data/", "dist/"]
[tool.hatch.build.targets.wheel]
packages = ["src/synaptic"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: PostgreSQL integration tests (require running PG server)",
"neo4j: Neo4j integration tests (require running Neo4j server)",
"qdrant: Qdrant integration tests (require running Qdrant server)",
"minio: MinIO integration tests (require running MinIO server)",
"composite: Composite backend integration tests (require Neo4j + Qdrant + MinIO)",
"qa: Quality assurance tests with real external data",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "S", "ASYNC", "PLC", "RUF"]
ignore = ["S101", "E501", "PLC0415", "S110", "S311", "S106", "RUF005", "F841", "B007", "B905", "RUF059", "E402", "N814"]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportMissingTypeStubs = false
reportUnknownMemberType = "warning"
reportUnknownVariableType = "warning"
reportUnknownArgumentType = "warning"