[build-system] requires = ["hatchling>=1.18"] build-backend = "hatchling.build" [project] name = "pmp-node" version = "0.3.0" description = "Personal Memory Protocol (PMP) reference local-first node: signed append-only operation log, key management, and provenance-tagged import adapters for calendar (ICS), notes, and photo metadata." readme = "README.md" license = { text = "Apache-2.0" } requires-python = ">=3.10" authors = [{ name = "FablePool PMP contributors" }] keywords = ["personal-data", "knowledge-graph", "local-first", "provenance", "ed25519"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Security :: Cryptography", ] dependencies = [ "cryptography>=42", ] [project.optional-dependencies] dev = [ "pytest>=8", ] [project.scripts] pmp = "pmp.cli:main" [project.urls] Homepage = "https://github.com/fablepool/pmp" [tool.hatch.build.targets.wheel] packages = ["src/pmp"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-q"