reqledger 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.
reqledger/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """reqledger: durable record owner for requirements and acceptance criteria.
2
+
3
+ ReqLedger stores readable Markdown records with TOML front matter and produces
4
+ deterministic JSON exports for downstream tools such as SpecMason. It does not
5
+ parse or generate Gherkin, discover tests, run tests, or own behavior specs.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ try:
11
+ from reqledger._version import __version__
12
+ except ModuleNotFoundError as exc: # pragma: no cover - dev fallback
13
+ if exc.name != "reqledger._version":
14
+ raise
15
+ __version__ = "0.0.0+unknown"
16
+
17
+ __all__ = ["__version__"]
reqledger/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ """Enable ``python -m reqledger``."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from reqledger.cli import app
6
+
7
+ if __name__ == "__main__": # pragma: no cover
8
+ app()
reqledger/_version.py ADDED
@@ -0,0 +1,24 @@
1
+ # file generated by vcs-versioning
2
+ # don't change, don't track in version control
3
+ from __future__ import annotations
4
+
5
+ __all__ = [
6
+ "__version__",
7
+ "__version_tuple__",
8
+ "version",
9
+ "version_tuple",
10
+ "__commit_id__",
11
+ "commit_id",
12
+ ]
13
+
14
+ version: str
15
+ __version__: str
16
+ __version_tuple__: tuple[int | str, ...]
17
+ version_tuple: tuple[int | str, ...]
18
+ commit_id: str | None
19
+ __commit_id__: str | None
20
+
21
+ __version__ = version = '0.1.0'
22
+ __version_tuple__ = version_tuple = (0, 1, 0)
23
+
24
+ __commit_id__ = commit_id = 'gdc439084d'