mkdocs-techdocs-frontmatter 0.1.0__tar.gz → 0.1.3__tar.gz
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.
- {mkdocs_techdocs_frontmatter-0.1.0/src/mkdocs_techdocs_frontmatter.egg-info → mkdocs_techdocs_frontmatter-0.1.3}/PKG-INFO +7 -2
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/pyproject.toml +7 -2
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3/src/mkdocs_techdocs_frontmatter.egg-info}/PKG-INFO +7 -2
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/LICENSE +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/README.md +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/setup.cfg +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter/__init__.py +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter/plugin.py +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter.egg-info/SOURCES.txt +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter.egg-info/dependency_links.txt +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter.egg-info/entry_points.txt +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter.egg-info/requires.txt +0 -0
- {mkdocs_techdocs_frontmatter-0.1.0 → mkdocs_techdocs_frontmatter-0.1.3}/src/mkdocs_techdocs_frontmatter.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocs-techdocs-frontmatter
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Python-Markdown extension that renders TechDocs page frontmatter as searchable metadata.
|
|
5
5
|
Author: Gijs Reijn
|
|
6
6
|
License-Expression: MIT
|
|
@@ -14,10 +14,15 @@ Classifier: Operating System :: OS Independent
|
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
22
|
Classifier: Programming Language :: Python :: 3.14
|
|
18
23
|
Classifier: Topic :: Documentation
|
|
19
24
|
Classifier: Topic :: Software Development :: Documentation
|
|
20
|
-
Requires-Python: >=3.
|
|
25
|
+
Requires-Python: >=3.9
|
|
21
26
|
Description-Content-Type: text/markdown
|
|
22
27
|
License-File: LICENSE
|
|
23
28
|
Requires-Dist: Markdown>=3.4
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mkdocs-techdocs-frontmatter"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "Python-Markdown extension that renders TechDocs page frontmatter as searchable metadata."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
11
11
|
license-files = ["LICENSE*"]
|
|
12
|
-
requires-python = ">=3.
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
13
|
authors = [
|
|
14
14
|
{ name = "Gijs Reijn" },
|
|
15
15
|
]
|
|
@@ -21,6 +21,11 @@ classifiers = [
|
|
|
21
21
|
"Programming Language :: Python",
|
|
22
22
|
"Programming Language :: Python :: 3",
|
|
23
23
|
"Programming Language :: Python :: 3 :: Only",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Programming Language :: Python :: 3.13",
|
|
24
29
|
"Programming Language :: Python :: 3.14",
|
|
25
30
|
"Topic :: Documentation",
|
|
26
31
|
"Topic :: Software Development :: Documentation",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocs-techdocs-frontmatter
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Python-Markdown extension that renders TechDocs page frontmatter as searchable metadata.
|
|
5
5
|
Author: Gijs Reijn
|
|
6
6
|
License-Expression: MIT
|
|
@@ -14,10 +14,15 @@ Classifier: Operating System :: OS Independent
|
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
22
|
Classifier: Programming Language :: Python :: 3.14
|
|
18
23
|
Classifier: Topic :: Documentation
|
|
19
24
|
Classifier: Topic :: Software Development :: Documentation
|
|
20
|
-
Requires-Python: >=3.
|
|
25
|
+
Requires-Python: >=3.9
|
|
21
26
|
Description-Content-Type: text/markdown
|
|
22
27
|
License-File: LICENSE
|
|
23
28
|
Requires-Dist: Markdown>=3.4
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|