33 lines
664 B
TOML
33 lines
664 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.scripts]
|
|
memory-gateway = "memory_system_api.server:main"
|
|
|
|
[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"
|