[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "fablepool" version = "0.5.0" description = "User-owned AI memory: reference node, derivation engine, and inspection/refutation CLI" readme = "README.md" requires-python = ">=3.10" license = { text = "Apache-2.0" } authors = [{ name = "FablePool Contributors" }] keywords = ["personal-ai", "knowledge-graph", "provenance", "local-first"] dependencies = [ "cryptography>=42", "rich>=13", ] [project.optional-dependencies] dev = [ "pytest>=8", ] [project.scripts] fablepool = "fablepool.cli:main" [tool.hatch.build.targets.wheel] packages = ["src/fablepool"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-q"