phase-memory/pyproject.toml

27 lines
571 B
TOML
Raw Normal View History

2026-05-18 01:55:34 +02:00
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "phase-memory"
version = "0.1.0"
description = "Profile-driven memory phase planning for agentic systems"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Coulomb" }
]
dependencies = []
[project.scripts]
phase-memory = "phase_memory.cli:main"
phase-memory-service = "phase_memory.service_app:main"
2026-05-18 01:55:34 +02:00
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]