[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "procheiron" version = "0.3.3" description = "Review gate for shared agent memory: an unreviewed or hand-edited memory never reaches your agents. MCP-native, zero dependencies." readme = "README.md" license = { file = "LICENSE" } authors = [{ name = "Procheiron Maintainers" }] requires-python = ">=3.9" keywords = ["agent-memory", "provenance", "governance", "audit-trail", "tamper-evident", "llm", "mcp", "multi-agent"] classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Intended Audience :: Developers", "Topic :: Security", "Topic :: Software Development :: Libraries :: Python Modules", ] # The governance core is stdlib-only, zero runtime dependencies. dependencies = [] [project.optional-dependencies] # Cryptographic authorship (ed25519 signing/verification of audit entries). # The hash chain (tamper-evidence) is stdlib and always available; this extra # only adds signature *authorship* proof. See signing.py. crypto = ["cryptography>=41"] [project.urls] Homepage = "https://github.com/logotheusneuro-cpu/procheiron-core" Repository = "https://github.com/logotheusneuro-cpu/procheiron-core" Issues = "https://github.com/logotheusneuro-cpu/procheiron-core/issues" Changelog = "https://github.com/logotheusneuro-cpu/procheiron-core/blob/master/CHANGELOG.md" [project.scripts] procheiron = "procheiron.cli:main" [tool.hatch.build.targets.wheel] packages = ["src/procheiron"]