[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "mnema" version = "0.4.0" description = "Mnema: an open protocol and reference implementation for user-owned AI memory. Milestone 4: derivation engine with provenance, confidence, and cascade invalidation." readme = "README.md" requires-python = ">=3.10" license = { text = "Apache-2.0" } authors = [{ name = "FablePool / Mnema contributors" }] keywords = ["personal-ai", "knowledge-graph", "provenance", "local-first", "user-owned"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries", ] dependencies = [ "pynacl>=1.5,<2", ] [project.optional-dependencies] dev = [ "pytest>=7", ] [project.scripts] mnema-derive = "mnema.cli.derive:main" [tool.hatch.build.targets.wheel] packages = ["mnema"] [tool.pytest.ini_options] testpaths = ["tests"]