crumb-kit 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,18 @@
1
+ """breadcrumbs — leave a trail your future self and your agents can follow back.
2
+
3
+ A portable, repo-local, human-readable ledger of durable project state for
4
+ human–agent software work. The CLI lives in :mod:`breadcrumbs.cli` and is
5
+ exposed as the ``crumb`` console script (see pyproject.toml).
6
+
7
+ ``__version__`` is the in-tree fallback used for source-checkout runs; the
8
+ installed distribution's authoritative version comes from package metadata
9
+ (``breadcrumbs.cli.get_version``).
10
+ """
11
+
12
+ # Plain literal first so setuptools can read it statically and so importing the
13
+ # package never requires importing the (heavier) CLI module.
14
+ __version__ = "0.1.0"
15
+
16
+ from breadcrumbs.cli import SCHEMA_VERSION, get_version, main
17
+
18
+ __all__ = ["main", "get_version", "SCHEMA_VERSION", "__version__"]
@@ -0,0 +1,6 @@
1
+ """Enable ``python -m breadcrumbs`` as an alias for the ``crumb`` CLI."""
2
+
3
+ from breadcrumbs.cli import main
4
+
5
+ if __name__ == "__main__":
6
+ raise SystemExit(main())