Files
memory-gateway/pyproject.toml
2026-04-30 16:09:28 +08:00

36 lines
734 B
TOML

[project]
name = "memory-gateway"
version = "0.1.0"
description = "Generic Memory Gateway for OpenViking, Obsidian, LLM summarization, and agent memory workflows"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.109.0",
"sse-starlette>=2.0.0",
"mcp[cli]>=1.1.0",
"httpx>=0.26.0",
"pydantic>=2.5.0",
"pyyaml>=6.0",
"uvicorn>=0.27.0",
"tenacity>=8.2.0",
"markitdown[all]>=0.1.5",
"python-multipart>=0.0.9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = []
[tool.ruff]
target-version = "py310"