-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 882 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 882 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
[project]
name = "amp-memory"
version = "0.1.0"
description = "AMP: The Agent Memory Protocol - A local-first, MCP-native memory server."
authors = [
{name = "Akshay Aggarwal", email = "akshay@example.com"},
]
dependencies = [
"mcp>=1.0.0",
"sqlite-utils>=3.36",
"pydantic>=2.0",
"typer>=0.9.0", # For CLI
"numpy>=1.24.0", # For vector ops
"requests>=2.31", # For Ollama API
"fastembed>=0.3", # For embeddings
"fastapi>=0.100", # For Dashboard
"uvicorn>=0.20", # For Dashboard server
"jinja2>=3.0", # For templates
"google-generativeai>=0.8.5",
"mem0ai>=1.0.1",
"ollama>=0.6.1",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
amp = "amp.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/amp"]