Files
memory-gateway/pyproject.toml
2026-05-18 09:54:26 +08:00

30 lines
596 B
TOML

[project]
name = "memory-system-api"
version = "0.1.0"
description = "Lightweight Memory System API for OpenViking session memory and EverOS user profiles"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.109.0",
"httpx>=0.26.0",
"pydantic>=2.5.0",
"pyyaml>=6.0",
"uvicorn>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["memory_system_api"]
[tool.ruff]
target-version = "py310"