-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.04 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
[project]
name = "remind-mcp"
version = "0.10.4"
description = "Generalization-capable memory layer for LLMs with episodic buffers, semantic graphs, and spreading activation retrieval"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.39.0",
"openai>=1.52.0",
"httpx>=0.27.0",
"numpy>=2.0.0",
"click>=8.1.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"fastmcp>=0.4.0",
"uvicorn>=0.30.0",
"starlette>=0.38.0",
"filelock>=3.0.0",
"sqlalchemy>=2.0",
"sqlite-vec>=0.1.6",
]
[project.optional-dependencies]
postgres = [
"psycopg[binary]>=3.0",
"pgvector>=0.3.0",
]
mysql = [
"pymysql>=1.0",
]
rerank = [
"sentence-transformers>=3.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
remind = "remind.cli:main"
remind-mcp = "remind.mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/remind"]
# For sdist, include web source for building
[tool.hatch.build.targets.sdist]
include = [
"src/remind/**/*",
"web/**/*",
"tests/**/*",
"README.md",
"LICENSE",
"pyproject.toml",
]
exclude = [
"web/node_modules/**/*",
]
# Force include static files even though they're gitignored
[tool.hatch.build.targets.sdist.force-include]
"src/remind/static" = "src/remind/static"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
addopts = [
"-v",
"--cov=src/remind",
"--cov-report=term-missing",
"--cov-fail-under=80",
]
[tool.coverage.run]
source = ["src/remind"]
branch = true
omit = [
"src/remind/__init__.py",
"src/remind/cli.py",
"src/remind/mcp_server.py",
"src/remind/api/*",
"src/remind/providers/anthropic.py",
"src/remind/providers/openai.py",
"src/remind/providers/azure_openai.py",
"src/remind/providers/ollama.py",
"src/remind/reranker.py",
]
[tool.coverage.report]
fail_under = 80
show_missing = true