markitecture 0.2.3__py3-none-any.whl → 0.2.32__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.
markitecture/__init__.py CHANGED
@@ -1,5 +1,3 @@
1
- from importlib.metadata import version
2
-
3
1
  from markitecture import metrics
4
2
 
5
3
  from .errors import (
@@ -19,8 +17,7 @@ from .processing.reflink_converter import (
19
17
  from .processing.text_splitter import MarkdownTextSplitter
20
18
  from .utils.file_handler import FileHandler
21
19
  from .utils.printer import RichPrinter
22
-
23
- __version__ = version("markitecture")
20
+ from .version import __version__
24
21
 
25
22
  __all__: list[str] = [
26
23
  "FileHandler",
@@ -0,0 +1 @@
1
+ __version__ = "0.2.32"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: markitecture
3
- Version: 0.2.3
4
- Summary: Markdown tools for modular and flexible docs: link validation, reference link conversion, text splitting, & more.
3
+ Version: 0.2.32
4
+ Summary: Markdown tools for modular workflows and content management.
5
5
  Project-URL: documentation, https://github.com/eli64s/markitecture/blob/main/README.md
6
6
  Project-URL: homepage, https://github.com/eli64s/markitecture
7
7
  Project-URL: repository, https://github.com/eli64s/markitecture
@@ -33,49 +33,64 @@ Requires-Dist: rich
33
33
  Requires-Dist: toml; python_full_version < '3.11'
34
34
  Description-Content-Type: text/markdown
35
35
 
36
- <div id="top" align="center">
36
+ <div align="center" id="top">
37
37
 
38
- <!-- HEADER -->
39
38
  <picture>
40
- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/eli64s/markitecture/13c4b28213fb8e8c75299ef5c905ce1d195a6988/docs/assets/logos/circle-dark.svg">
41
- <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/eli64s/markitecture/13c4b28213fb8e8c75299ef5c905ce1d195a6988/docs/assets/logos/circle-light.svg">
42
- <img alt="markitecture Logo" src="https://raw.githubusercontent.com/eli64s/markitecture/13c4b28213fb8e8c75299ef5c905ce1d195a6988/docs/assets/logos/circle-light.svg" width="900" style="max-width: 100%;">
39
+ <source media="(prefers-color-scheme: dark)" srcset="/assets/logo.svg">
40
+ <source media="(prefers-color-scheme: light)" srcset="/assets/logo.svg">
41
+ <img alt="Markitecture Logo" src="/assets/logo.svg" width="900" style="max-width: 100%;">
43
42
  </picture>
44
43
 
45
- <h3 align="center">
46
- The Architecture of Better Documentation.
47
- </h3>
44
+ <h1>Markitecture</h1>
45
+
46
+ The Architecture of Better Documentation.
47
+
48
48
  <p align="center">
49
- <em>Markitecture: The Python toolkit that empowers modular Markdown workflows.</em>
49
+ <em>Tools for modular Markdown workflows and content management.</em>
50
50
  </p>
51
51
 
52
- <!-- BADGES -->
52
+ <!-- SHIELD GROUP -->
53
53
  <div align="center">
54
54
  <p align="center" style="margin-bottom: 20px;">
55
55
  <a href="https://github.com/eli64s/markitecture/actions">
56
56
  <img src="https://img.shields.io/github/actions/workflow/status/eli64s/markitecture/ci.yml?label=CI&style=flat&logo=githubactions&logoColor=white&labelColor=2A2A2A&color=FFD700" alt="GitHub Actions" />
57
57
  </a>
58
58
  <a href="https://app.codecov.io/gh/eli64s/markitecture">
59
- <img src="https://img.shields.io/codecov/c/github/eli64s/markitecture?label=Coverage&style=flat&logo=codecov&logoColor=white&labelColor=2A2A2A&color=3fe1c0" alt="Coverage" />
59
+ <img src="https://img.shields.io/codecov/c/github/eli64s/markitecture?label=Coverage&style=flat&logo=codecov&logoColor=white&labelColor=2A2A2A&color=00E5FF" alt="Coverage" />
60
60
  </a>
61
61
  <a href="https://pypi.org/project/markitecture/">
62
- <img src="https://img.shields.io/pypi/v/markitecture?label=PyPI&style=flat&logo=pypi&logoColor=white&labelColor=2A2A2A&color=00E5FF" alt="PyPI Version" />
62
+ <img src="https://img.shields.io/pypi/v/markitecture?label=PyPI&style=flat&logo=pypi&logoColor=white&labelColor=2A2A2A&color=7934C5" alt="PyPI Version" />
63
63
  </a>
64
+ <!--
64
65
  <a href="https://github.com/eli64s/markitecture">
65
66
  <img src="https://img.shields.io/pypi/pyversions/markitecture?label=Python&style=flat&logo=python&logoColor=white&labelColor=2A2A2A&color=7934C5" alt="Python Version" />
66
67
  </a>
68
+ -->
67
69
  <a href="https://opensource.org/license/mit/">
68
70
  <img src="https://img.shields.io/github/license/eli64s/markitecture?label=License&style=flat&logo=opensourceinitiative&logoColor=white&labelColor=2A2A2A&color=FF00FF" alt="MIT License">
69
71
  </a>
70
72
  </p>
71
73
  </div>
72
74
 
75
+ [Documentation][markitecture] · [Contribute][markitecture] · [Report Bug][github-issues] · [Request Feature][github-issues]
76
+
77
+ <!--
78
+ <details>
79
+ <summary><kbd>Table of contents</kbd></summary>
80
+
81
+ - [Installation](https://github.com/eli64s/markitecture/tree/main/#installation)
82
+ - [Usage](https://github.com/eli64s/markitecture/tree/main/#using-the-cli)
83
+ - [Contributing](https://github.com/eli64s/markitecture/tree/main/#contributing)
84
+ - [License](https://github.com/eli64s/markitecture/tree/main/#license)
85
+
86
+ </details>
87
+ -->
88
+
73
89
  <div align="center">
74
90
  <img src="https://raw.githubusercontent.com/eli64s/markitecture/216a92894e6f30c707a214fad5a5fba417e3bc39/docs/assets/line.svg" alt="separator" width="100%" height="2px" style="margin: 20px 0;">
75
91
  </div>
76
92
 
77
93
  </div>
78
- <!-- HEADER END -->
79
94
 
80
95
  ## What is Markitecture?
81
96
 
@@ -236,36 +251,39 @@ Contributions are welcome! Whether it's bug reports, feature requests, or code c
236
251
 
237
252
  ## License
238
253
 
254
+ Copyright &copy; 2024 - 2025 <a href="https://eli64s/markitecture" target="_blank">Markitecture</a> All rights reserved. <br />
255
+ Released under the [MIT][mit-license] license.
256
+
239
257
  Copyright © 2024-2025 [Markitecture][markitecture]. <br />
240
258
  Released under the [MIT][mit-license] license.
241
259
 
242
260
  <div align="right">
243
261
 
244
- [![][back-to-top]](https://github.com/eli64s/markitecture/tree/main/#top)
262
+ [![][return-to-top]](https://github.com/eli64s/markitecture/tree/main/#top)
245
263
 
246
264
  </div>
247
265
 
248
- <!-- <div align="left">
249
- <a href="#top">
250
- <img src="https://raw.githubusercontent.com/eli64s/markitecture/77bec69129dd3a075d7d0816c7bd826da131ccc7/docs/assets/buttons/rectangle.svg" width="100px" height="100px" alt="Return to Top">
251
- </a>
252
- </div> -->
253
-
254
266
  <div align="center">
255
- <img src="https://raw.githubusercontent.com/eli64s/markitecture/216a92894e6f30c707a214fad5a5fba417e3bc39/docs/assets/line.svg" alt="separator" width="100%" height="2px" style="margin: 20px 0;">
267
+ <img
268
+ src="https://raw.githubusercontent.com/eli64s/markitecture/216a92894e6f30c707a214fad5a5fba417e3bc39/docs/assets/line.svg"
269
+ alt="Thematic Break"
270
+ width="100%"
271
+ height="2px"
272
+ style="margin: 20px 0;"
273
+ >
256
274
  </div>
257
275
 
258
-
259
276
  <!-- REFERENCE LINKS -->
260
277
 
261
278
  <!-- BADGES -->
262
- [back-to-top]: https://img.shields.io/badge/-BACK_TO_TOP-7934C5?style=flat-square
279
+ [return-to-top]: https://img.shields.io/badge/-BACK_TO_TOP-7934C5?style=flat-square
263
280
 
264
281
  <!-- PROJECT RESOURCES -->
265
282
  [pypi]: https://pypi.org/project/markitecture/
266
283
  [markitecture]: https://github.com/eli64s/markitecture
267
284
  [github-issues]: https://github.com/eli64s/markitecture/issues
268
285
  [github-pulls]: https://github.com/eli64s/markitecture/pulls
286
+ [contributing]: https://github.com/eli64s/markitecture/blob/main/CONTRIBUTING.md
269
287
  [mit-license]: https://github.com/eli64s/markitecture/blob/main/LICENSE
270
288
  [examples]: https://github.com/eli64s/markitecture/tree/main/examples
271
289
 
@@ -1,6 +1,7 @@
1
- markitecture/__init__.py,sha256=gE8YEGeliYuntbLAMEAm3Q6d9M9p2CNlkuX7Soolb90,986
1
+ markitecture/__init__.py,sha256=g7bCw-O5qNDoHS-rPHKP8SRYYL6D3eA8v1D-3oRzngY,940
2
2
  markitecture/__main__.py,sha256=dpolm4cutAQQMX5n20Lx0MXxMZokzaI0W3ieXKhwRno,83
3
3
  markitecture/errors.py,sha256=x5QrksRA1cMygGuCTiKA5bXM1OpKlMJoou2b7ajrO7M,1659
4
+ markitecture/version.py,sha256=TZEL7NbFvxLaphGOCsAqfJrHhPB2LHR2ab0Eb5xxaU0,23
4
5
  markitecture/cli/__init__.py,sha256=dsYvYkXGLj2RV64cwxk4K0HNsR8AJAFh0QwIxMw5MOc,64
5
6
  markitecture/cli/app.py,sha256=Jk8tisqVe6zNzdSrJ3JFuQKPMGD61hBoiwGkkmAOfkE,1113
6
7
  markitecture/cli/commands/__init__.py,sha256=9Ww1F_DKzNnfEmdLyh3Lox7l9STuUtq_b4hF6NSDiUM,568
@@ -36,8 +37,8 @@ markitecture/utils/__init__.py,sha256=y6ur3d-KUAE7WRMTmBV41QqwcoVHoMxZB8Ba2JoD1S
36
37
  markitecture/utils/file_handler.py,sha256=ixFzMGgLh5DMwK7zUwyn_Fjk7z3OOvNbKn4uxpzIIPU,863
37
38
  markitecture/utils/printer.py,sha256=dPywBAS6qh3sKFhwB8D2Pe9TqsoeDH600Wt4RMMjGos,6948
38
39
  markitecture/utils/sanitizer.py,sha256=MjfVMSkXFP3X9_A8czqzGkE5u9RAM8TosuhfWsEbUJg,2227
39
- markitecture-0.2.3.dist-info/METADATA,sha256=LwUCG9Eb7zlurU-G05RUCDFBXPBrl6MyoT-9qVs4WRY,11936
40
- markitecture-0.2.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
41
- markitecture-0.2.3.dist-info/entry_points.txt,sha256=neXBHoMEodLhdSjfqVoz9fnKODF_tdolI40Xm06F2pk,60
42
- markitecture-0.2.3.dist-info/licenses/LICENSE,sha256=_lS8UU-SncVp61_NHQp9PHIAiDZtNuKYeaqyFDiF6Bk,1109
43
- markitecture-0.2.3.dist-info/RECORD,,
40
+ markitecture-0.2.32.dist-info/METADATA,sha256=_S6QmglOhPnEh8OTWLvH14mjgxtDdM8KALAzvRqCvfA,12050
41
+ markitecture-0.2.32.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
42
+ markitecture-0.2.32.dist-info/entry_points.txt,sha256=neXBHoMEodLhdSjfqVoz9fnKODF_tdolI40Xm06F2pk,60
43
+ markitecture-0.2.32.dist-info/licenses/LICENSE,sha256=_lS8UU-SncVp61_NHQp9PHIAiDZtNuKYeaqyFDiF6Bk,1109
44
+ markitecture-0.2.32.dist-info/RECORD,,