-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.88 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agent-recall"
version = "0.4.0"
description = "Persistent memory and AI briefings for coding agents — drop-in MCP server"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Max Nardit", email = "max@nardit.com" }]
keywords = [
"ai", "agents", "ai-agents", "memory", "mcp",
"claude", "claude-code", "knowledge-graph", "llm",
"model-context-protocol", "sqlite", "briefings",
"scope", "context", "coding-agents",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"pyyaml>=6.0.2",
"click>=8.0",
]
[project.optional-dependencies]
mcp = ["mcp>=1.0,<2.0"]
api = ["anthropic>=0.39"]
dev = ["pytest>=8.0", "pytest-cov", "mcp>=1.0,<2.0", "anthropic>=0.39"]
[project.scripts]
agent-recall = "agent_recall.cli:main"
agent-recall-session-start = "agent_recall.hooks:main_session_start"
agent-recall-post-tool-use = "agent_recall.hooks:main_post_tool_use"
[project.urls]
Homepage = "https://github.com/mnardit/agent-recall"
Repository = "https://github.com/mnardit/agent-recall"
Documentation = "https://github.com/mnardit/agent-recall#readme"
Changelog = "https://github.com/mnardit/agent-recall/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/mnardit/agent-recall/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]