cephios-core 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ """cephios-core — the Python reference implementation of The Cephios Protocol v1.0.
2
+
3
+ This module is the single source of truth for the package version: hatchling reads
4
+ ``__version__`` here via ``[tool.hatch.version]`` in ``pyproject.toml``. The protocol
5
+ surface itself (key derivation, envelope, wrapped-DEK, ingestion, buffer, errors) is
6
+ implemented in subsequent Group 12 commits; this scaffold deliberately exposes nothing
7
+ beyond the version so the public API can be added deliberately under the IS commitment.
8
+ """
9
+
10
+ __version__ = "0.1.0"