Files
memabra/pyproject.toml
2026-04-15 11:06:05 +08:00

28 lines
525 B
TOML

[project]
name = "memabra"
version = "0.1.0"
description = "An intuition-driven control plane for agent memory and action selection."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
[project.scripts]
memabra = "memabra.cli:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]