wj-mkdocs 1.0.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.
wj_mkdocs/__init__.py ADDED
@@ -0,0 +1 @@
1
+
wj_mkdocs/__main__.py ADDED
@@ -0,0 +1,30 @@
1
+ # ----------------------------------------------------------------------------------------
2
+ # Entry Point
3
+ # -----------
4
+ #
5
+ # Verifies correct Python version and starts main
6
+ #
7
+ # (c) 2026 WaterJuice — Released under the Unlicense; see LICENSE.
8
+ #
9
+ # Version History
10
+ # ---------------
11
+ # May 2026 - Created
12
+ # ----------------------------------------------------------------------------------------
13
+
14
+ # ----------------------------------------------------------------------------------------
15
+ # Python Check
16
+ # ----------------------------------------------------------------------------------------
17
+
18
+ import sys
19
+
20
+ if sys.version_info < (3, 12):
21
+ print("Requires python 3.12 or greater", file=sys.stderr)
22
+ exit(1)
23
+
24
+ # ----------------------------------------------------------------------------------------
25
+ # Entry
26
+ # ----------------------------------------------------------------------------------------
27
+
28
+ from . import main
29
+
30
+ exit(main.main(sys.argv[1:]))
wj_mkdocs/_version.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "1.0.0"