mkdocs-nodegraph 0.1.2__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_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/PKG-INFO +4 -3
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/PKG-INFO +4 -3
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/setup.py +7 -6
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/LICENSE.md +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/README.md +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/__init__.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/__init__.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/generate_graph.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/graph_opts.json +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/mdfile.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/mdparser.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/pyvis_opts.js +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/templates/__init__.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/templates/template.html +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/plugin.py +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/SOURCES.txt +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/dependency_links.txt +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/entry_points.txt +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/requires.txt +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/top_level.txt +0 -0
- {mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/setup.cfg +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mkdocs-nodegraph
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Node Graph
|
|
5
|
-
Home-page:
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Node Graph plugin for Mkdocs Material
|
|
5
|
+
Home-page: https://github.com/yonge123/mkdocs-nodegraph/tree/master
|
|
6
6
|
Author: JeongYong Hwang
|
|
7
7
|
Author-email: yonge123@gmail.com
|
|
8
8
|
License: MIT
|
|
9
9
|
Keywords: mkdocs,plugin,nodegraph
|
|
10
|
+
Requires-Python: >=3.9
|
|
10
11
|
Description-Content-Type: text/markdown
|
|
11
12
|
Requires-Dist: mkdocs>=1.4.0
|
|
12
13
|
Requires-Dist: mkdocs-material>=9.5.31
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mkdocs-nodegraph
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Node Graph
|
|
5
|
-
Home-page:
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Node Graph plugin for Mkdocs Material
|
|
5
|
+
Home-page: https://github.com/yonge123/mkdocs-nodegraph/tree/master
|
|
6
6
|
Author: JeongYong Hwang
|
|
7
7
|
Author-email: yonge123@gmail.com
|
|
8
8
|
License: MIT
|
|
9
9
|
Keywords: mkdocs,plugin,nodegraph
|
|
10
|
+
Requires-Python: >=3.9
|
|
10
11
|
Description-Content-Type: text/markdown
|
|
11
12
|
Requires-Dist: mkdocs>=1.4.0
|
|
12
13
|
Requires-Dist: mkdocs-material>=9.5.31
|
|
@@ -5,14 +5,17 @@ with open('README.md', 'r') as fin:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="mkdocs-nodegraph",
|
|
8
|
-
version="0.1.
|
|
8
|
+
version="0.1.3",
|
|
9
|
+
description="Node Graph plugin for Mkdocs Material",
|
|
10
|
+
long_description=long_description,
|
|
11
|
+
long_description_content_type="text/markdown",
|
|
9
12
|
author="JeongYong Hwang",
|
|
10
13
|
author_email="yonge123@gmail.com",
|
|
11
14
|
keywords=["mkdocs", "plugin", "nodegraph"],
|
|
12
|
-
url="",
|
|
13
|
-
packages=find_packages(),
|
|
15
|
+
url="https://github.com/yonge123/mkdocs-nodegraph/tree/master",
|
|
14
16
|
license="MIT",
|
|
15
17
|
license_files=["LICENSE"],
|
|
18
|
+
packages=find_packages(),
|
|
16
19
|
install_requires=[
|
|
17
20
|
"mkdocs>=1.4.0",
|
|
18
21
|
"mkdocs-material>=9.5.31",
|
|
@@ -21,6 +24,7 @@ setup(
|
|
|
21
24
|
"pyvis>=0.3.0",
|
|
22
25
|
"PyYAML>=6.0.2",
|
|
23
26
|
],
|
|
27
|
+
python_requires='>=3.9',
|
|
24
28
|
entry_points={
|
|
25
29
|
'mkdocs.plugins': [
|
|
26
30
|
'nodegraph = mkdocs_nodegraph.plugin:GraphViewPlugin',
|
|
@@ -34,7 +38,4 @@ setup(
|
|
|
34
38
|
"nodegraph/templates/template.html",
|
|
35
39
|
],
|
|
36
40
|
},
|
|
37
|
-
description="Node Graph Plugin For Mkdocs Material",
|
|
38
|
-
long_description=long_description,
|
|
39
|
-
long_description_content_type="text/markdown",
|
|
40
41
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/generate_graph.py
RENAMED
|
File without changes
|
{mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/graph_opts.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/templates/__init__.py
RENAMED
|
File without changes
|
{mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph/nodegraph/templates/template.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{mkdocs_nodegraph-0.1.2 → mkdocs_nodegraph-0.1.3}/mkdocs_nodegraph.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|