-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 904 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (42 loc) · 904 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "persistent-memory"
version = "0.1.0"
description = "Persistent memory for Claude Code that learns like a human"
readme = "README.md"
license = "AGPL-3.0-or-later"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.6",
"PyYAML>=6.0",
"httpx>=0.27",
"numpy>=1.26",
"rank-bm25>=0.2.2",
"python-frontmatter>=1.1",
"networkx>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
daemon = [
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"jinja2>=3.1",
"watchdog>=5.0",
]
mcp = [
"mcp>=1.2",
]
[tool.hatch.build.targets.wheel]
packages = ["src/persistent_memory"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: end-to-end tests against real services (run with PM_E2E=1)",
]