cal-docs-client 1.0.0b1__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,20 @@
1
+ # ────────────────────────────────────────────────────────────────────────────────────────
2
+ # __init__.py
3
+ # ───────────
4
+ #
5
+ # cal-docs-client package root.
6
+ #
7
+ # (c) 2026 Cyber Assessment Labs — MIT License; see LICENSE in the project root.
8
+ #
9
+ # Authors
10
+ # ───────
11
+ # bena (via Claude)
12
+ #
13
+ # Version History
14
+ # ───────────────
15
+ # Feb 2026 - Created
16
+ # ────────────────────────────────────────────────────────────────────────────────────────
17
+
18
+ from .version import VERSION_STR
19
+
20
+ __all__ = ["VERSION_STR"]
@@ -0,0 +1,21 @@
1
+ # ────────────────────────────────────────────────────────────────────────────────────────
2
+ # __main__.py
3
+ # ───────────
4
+ #
5
+ # Entry point for running the package as a module: python -m cal_docs_client
6
+ #
7
+ # (c) 2026 Cyber Assessment Labs — MIT License; see LICENSE in the project root.
8
+ #
9
+ # Authors
10
+ # ───────
11
+ # bena (via Claude)
12
+ #
13
+ # Version History
14
+ # ───────────────
15
+ # Feb 2026 - Created
16
+ # ────────────────────────────────────────────────────────────────────────────────────────
17
+
18
+ import sys
19
+ from .cli import main
20
+
21
+ sys.exit(main())
@@ -0,0 +1,4 @@
1
+ # This file is auto-generated by Hatchling. As such, do not:
2
+ # - modify
3
+ # - track in version control e.g. be sure to add to .gitignore
4
+ __version__ = VERSION = '1.0.0b1'