-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (77 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
86 lines (77 loc) · 2.26 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "neuro-cortex-memory"
version = "3.13.2"
description = "Scientifically-grounded memory system based on computational neuroscience research"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Clement Deust", email = "admin@ai-architect.tools" },
]
keywords = ["mcp", "claude-code", "memory", "cognitive-profiling"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastmcp>=2.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"numpy>=1.24.0",
]
[project.urls]
Homepage = "https://github.com/cdeust/Cortex"
Repository = "https://github.com/cdeust/Cortex"
[project.scripts]
neuro-cortex-memory = "mcp_server.__main__:main"
cortex-doctor = "mcp_server.doctor:run"
cortex-hook = "mcp_server.hook_runner:run"
[project.optional-dependencies]
postgresql = [
"psycopg[binary]>=3.1",
"psycopg_pool>=3.2",
"pgvector>=0.3",
]
sqlite = [
"sqlite-vec>=0.1.1",
]
codebase = [
"tree-sitter>=0.24.0",
"tree-sitter-language-pack>=0.24.0",
"networkx>=3.0",
]
benchmarks = [
"datasets>=2.14.0", # HuggingFace dataset loader (BEAM, LoCoMo, LongMemEval)
"sentence-transformers>=2.2.0", # all-MiniLM-L6-v2 embeddings
"flashrank>=0.2.0", # cross-encoder reranking (ms-marco-MiniLM-L-12-v2)
"psycopg[binary]>=3.1", # PostgreSQL driver
"pgvector>=0.3", # vector similarity in PostgreSQL
"pymupdf>=1.24.0", # PDF parsing for some benchmark sources
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.23.0",
"sentence-transformers>=2.2.0",
"networkx>=3.0",
]
[tool.hatch.build.targets.wheel]
packages = ["mcp_server"]
[tool.hatch.build.targets.wheel.force-include]
"ui" = "mcp_server/ui"
[tool.pytest.ini_options]
testpaths = ["tests_py"]
pythonpath = ["."]
markers = [
"invariants: Phase 0.3+ testable invariant predicates (I1/I2/I3/I4 and parity tests)",
]
[tool.coverage.run]
source = ["mcp_server"]
[tool.coverage.report]
show_missing = true