-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.85 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "engram-memory-system"
version = "0.5.2"
description = "Cognitive memory system with hybrid retrieval, entity graphs, and memory lifecycle. 98.1% R@5 on LongMemEval."
license = "MIT"
requires-python = ">=3.11"
readme = "README.md"
authors = [
{ name = "raya" },
]
keywords = ["memory", "retrieval", "embeddings", "rag", "mcp", "ai", "cognitive", "hnsw"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Database",
]
dependencies = [
"sentence-transformers>=3.0.0",
"numpy>=1.24.0",
"aiosqlite>=0.19.0",
"psycopg[binary]>=3.2.0",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"jinja2>=3.1.0",
"sse-starlette>=2.0.0",
"pyyaml>=6.0",
"pymupdf>=1.24.0",
"hnswlib>=0.8.0",
]
[project.urls]
Homepage = "https://github.com/raya-ac/engram"
Repository = "https://github.com/raya-ac/engram"
Issues = "https://github.com/raya-ac/engram/issues"
[project.scripts]
engram = "engram.cli:main"
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
voyage = ["voyageai>=0.3.0"]
openai = ["openai>=1.30.0"]
anthropic = ["anthropic>=0.40.0"]
gemini = ["google-genai>=1.0.0"]
api = ["voyageai>=0.3.0", "openai>=1.30.0", "anthropic>=0.40.0", "google-genai>=1.0.0"]
docs = ["mkdocs>=1.6.0", "mkdocs-material>=9.5.0"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:importlib._bootstrap",
"ignore::DeprecationWarning:sys",
]
[tool.hatch.build.targets.wheel]
packages = ["engram"]