mdbub 0.3.10__tar.gz → 0.3.12__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.
- {mdbub-0.3.10 → mdbub-0.3.12}/PKG-INFO +1 -45
- {mdbub-0.3.10 → mdbub-0.3.12}/pyproject.toml +17 -55
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/version.py +2 -2
- {mdbub-0.3.10 → mdbub-0.3.12}/CHANGELOG.md +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/LICENSE +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/README.md +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/__init__.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/cli.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/__init__.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/about.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/export.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/print_kv.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/print_links.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/print_tags.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/quick.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/quickmode_config.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/tag_utils.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/commands/view.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/core/__init__.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/core/mindmap.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/core/mindmap_utils.py +0 -0
- {mdbub-0.3.10 → mdbub-0.3.12}/src/mdbub/symbols.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: mdbub
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.12
|
4
4
|
Summary: Terminal-first interactive mindmap CLI tool with extended markdown support
|
5
5
|
License: Apache-2.0
|
6
6
|
Keywords: cli,terminal,mindmap,markdown,productivity,tui
|
@@ -23,63 +23,19 @@ Classifier: Topic :: Office/Business
|
|
23
23
|
Classifier: Topic :: Software Development :: Documentation
|
24
24
|
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
25
25
|
Classifier: Topic :: Utilities
|
26
|
-
Requires-Dist: aiofiles (>=24.1.0,<25.0.0)
|
27
|
-
Requires-Dist: anyio (>=4.9.0,<5.0.0)
|
28
|
-
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
|
29
|
-
Requires-Dist: beautifulsoup4 (>=4.13.4,<5.0.0)
|
30
|
-
Requires-Dist: black (>=25.1.0,<26.0.0)
|
31
26
|
Requires-Dist: click (>=8.0.0,<8.2)
|
32
|
-
Requires-Dist: fastapi (>=0.115.12,<0.116.0)
|
33
|
-
Requires-Dist: halo (>=0.0.31,<0.0.32)
|
34
|
-
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
35
|
-
Requires-Dist: huggingface-hub (>=0.32.0,<0.33.0)
|
36
|
-
Requires-Dist: hypothesis (>=6.131.25,<7.0.0)
|
37
|
-
Requires-Dist: importlib-metadata (>=8.7.0,<9.0.0)
|
38
|
-
Requires-Dist: inquirer (>=3.4.0,<4.0.0)
|
39
|
-
Requires-Dist: isort (>=6.0.1,<7.0.0)
|
40
|
-
Requires-Dist: jinja2 (>=3.1.6,<4.0.0)
|
41
|
-
Requires-Dist: keyring (>=25.6.0,<26.0.0)
|
42
|
-
Requires-Dist: loguru (>=0.7.3,<0.8.0)
|
43
|
-
Requires-Dist: lxml (>=5.4.0,<6.0.0)
|
44
27
|
Requires-Dist: markdown (>=3.8,<4.0)
|
45
28
|
Requires-Dist: markdown-it-py (>=3.0.0,<4.0.0)
|
46
|
-
Requires-Dist: mistune (>=3.1.3,<4.0.0)
|
47
|
-
Requires-Dist: mypy (>=1.15.0,<2.0.0)
|
48
|
-
Requires-Dist: openai (>=1.82.0,<2.0.0)
|
49
|
-
Requires-Dist: orjson (>=3.10.18,<4.0.0)
|
50
29
|
Requires-Dist: packaging (>=25.0,<26.0)
|
51
30
|
Requires-Dist: platformdirs (>=4.3.8,<5.0.0)
|
52
|
-
Requires-Dist: pre-commit (>=4.2.0,<5.0.0)
|
53
31
|
Requires-Dist: prompt-toolkit (>=3.0.51,<4.0.0)
|
54
|
-
Requires-Dist: pydantic (>=2.11.5,<3.0.0)
|
55
|
-
Requires-Dist: pygments (>=2.19.1,<3.0.0)
|
56
|
-
Requires-Dist: pyinstaller (>=6.14.1,<7.0.0) ; python_version >= "3.9" and python_version < "3.14"
|
57
|
-
Requires-Dist: pyperclip (>=1.9.0,<2.0.0)
|
58
|
-
Requires-Dist: pytest (>=8.3.5,<9.0.0)
|
59
|
-
Requires-Dist: pytest-asyncio (>=0.26.0,<0.27.0)
|
60
|
-
Requires-Dist: pytest-lazy-fixture (>=0.6.3,<0.7.0)
|
61
|
-
Requires-Dist: pytest-mock (>=3.14.0,<4.0.0)
|
62
|
-
Requires-Dist: pytest-randomly (>=3.16.0,<4.0.0)
|
63
|
-
Requires-Dist: pytest-socket (>=0.7.0,<0.8.0)
|
64
|
-
Requires-Dist: pytest-sugar (>=1.0.0,<2.0.0)
|
65
|
-
Requires-Dist: pytest-timeout (>=2.4.0,<3.0.0)
|
66
|
-
Requires-Dist: pytest-xdist (>=3.6.1,<4.0.0)
|
67
|
-
Requires-Dist: pytest-xprocess (>=1.0.2,<2.0.0)
|
68
|
-
Requires-Dist: python-dotenv (>=1.1.0,<2.0.0)
|
69
32
|
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
70
33
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
71
34
|
Requires-Dist: rich (>=14.0.0,<15.0.0)
|
72
35
|
Requires-Dist: rich-click (>=1.8.9,<2.0.0)
|
73
36
|
Requires-Dist: ruamel-yaml (>=0.18.10,<0.19.0)
|
74
|
-
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
75
|
-
Requires-Dist: textual (>=3.3.0,<4.0.0)
|
76
|
-
Requires-Dist: tiktoken (>=0.9.0,<0.10.0)
|
77
|
-
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
78
37
|
Requires-Dist: tomli (>=2.2.1,<3.0.0)
|
79
|
-
Requires-Dist: tqdm (>=4.67.1,<5.0.0)
|
80
38
|
Requires-Dist: typer (>=0.15.4,<0.16.0)
|
81
|
-
Requires-Dist: uvicorn (>=0.34.2,<0.35.0)
|
82
|
-
Requires-Dist: watchfiles (>=1.0.5,<2.0.0)
|
83
39
|
Project-URL: Documentation, https://github.com/collabinator/mdbubbles/blob/main/README.md
|
84
40
|
Project-URL: Homepage, https://github.com/collabinator/mdbubbles
|
85
41
|
Project-URL: Repository, https://github.com/collabinator/mdbubbles
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "mdbub"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.12"
|
4
4
|
description = "Terminal-first interactive mindmap CLI tool with extended markdown support"
|
5
5
|
authors = ["dudash <jason.dudash@gmail.com>"]
|
6
6
|
license = "Apache-2.0"
|
@@ -31,74 +31,36 @@ include = ["CHANGELOG.md", "LICENSE"]
|
|
31
31
|
|
32
32
|
[tool.poetry.scripts]
|
33
33
|
mdbub = "mdbub.cli:app"
|
34
|
-
mdbubbles = "mdbubbles.cli:app"
|
35
34
|
|
36
35
|
[tool.poetry.dependencies]
|
37
|
-
python = ">=3.9,<3.14"
|
38
36
|
click = ">=8.0.0,<8.2"
|
39
|
-
|
40
|
-
pyyaml = "^6.0.2"
|
41
|
-
textual = "^3.3.0"
|
37
|
+
markdown = "^3.8"
|
42
38
|
markdown-it-py = "^3.0.0"
|
43
|
-
|
44
|
-
|
45
|
-
|
39
|
+
packaging = "^25.0"
|
40
|
+
platformdirs = "^4.3.8"
|
41
|
+
prompt-toolkit = "^3.0.51"
|
42
|
+
python = ">=3.9,<3.14"
|
43
|
+
pyyaml = "^6.0.2"
|
44
|
+
requests = "^2.32.3"
|
45
|
+
rich = "^14.0.0"
|
46
|
+
rich-click = "^1.8.9"
|
46
47
|
ruamel-yaml = "^0.18.10"
|
47
|
-
|
48
|
+
tomli = "^2.2.1"
|
49
|
+
typer = "^0.15.4"
|
50
|
+
|
51
|
+
[tool.poetry.group.dev.dependencies]
|
48
52
|
black = "^25.1.0"
|
49
53
|
isort = "^6.0.1"
|
50
54
|
mypy = "^1.15.0"
|
51
55
|
pre-commit = "^4.2.0"
|
52
|
-
|
53
|
-
|
54
|
-
importlib-metadata = "^8.7.0"
|
55
|
-
uvicorn = "^0.34.2"
|
56
|
-
fastapi = "^0.115.12"
|
57
|
-
aiofiles = "^24.1.0"
|
58
|
-
httpx = "^0.28.1"
|
59
|
-
jinja2 = "^3.1.6"
|
60
|
-
markdown = "^3.8"
|
61
|
-
pydantic = "^2.11.5"
|
62
|
-
packaging = "^25.0"
|
63
|
-
prompt-toolkit = "^3.0.51"
|
64
|
-
pygments = "^2.19.1"
|
65
|
-
watchfiles = "^1.0.5"
|
66
|
-
platformdirs = "^4.3.8"
|
67
|
-
appdirs = "^1.4.4"
|
68
|
-
python-dotenv = "^1.1.0"
|
69
|
-
orjson = "^3.10.18"
|
70
|
-
rich-click = "^1.8.9"
|
71
|
-
tabulate = "^0.9.0"
|
72
|
-
inquirer = "^3.4.0"
|
73
|
-
halo = "^0.0.31"
|
74
|
-
loguru = "^0.7.3"
|
75
|
-
tqdm = "^4.67.1"
|
76
|
-
beautifulsoup4 = "^4.13.4"
|
77
|
-
lxml = "^5.4.0"
|
78
|
-
mistune = "^3.1.3"
|
79
|
-
openai = "^1.82.0"
|
80
|
-
huggingface-hub = "^0.32.0"
|
81
|
-
tiktoken = "^0.9.0"
|
82
|
-
pyperclip = "^1.9.0"
|
83
|
-
pytest-mock = "^3.14.0"
|
84
|
-
pytest-asyncio = "^0.26.0"
|
85
|
-
hypothesis = "^6.131.25"
|
86
|
-
pyinstaller = { version = "^6.14.1", python = ">=3.9,<3.14" }
|
87
|
-
pytest-xdist = "^3.6.1"
|
88
|
-
pytest-randomly = "^3.16.0"
|
89
|
-
pytest-sugar = "^1.0.0"
|
90
|
-
pytest-socket = "^0.7.0"
|
91
|
-
pytest-timeout = "^2.4.0"
|
92
|
-
pytest-xprocess = "^1.0.2"
|
93
|
-
pytest-lazy-fixture = "^0.6.3"
|
56
|
+
pytest = "^8.0.0"
|
57
|
+
pytest-cov = "^6.2.1"
|
94
58
|
toml = "^0.10.2"
|
95
|
-
|
96
|
-
|
97
|
-
[tool.poetry.group.dev.dependencies]
|
98
59
|
ruff = "^0.11.13"
|
99
60
|
twine = "^5.0.0"
|
100
61
|
types-toml = "^0.10.8.20240310"
|
101
62
|
|
63
|
+
|
102
64
|
[tool.black]
|
103
65
|
line-length = 88
|
104
66
|
target-version = ['py39']
|
@@ -5,13 +5,13 @@ from pathlib import Path
|
|
5
5
|
|
6
6
|
import typer
|
7
7
|
|
8
|
-
from mdbub import BUILD_INFO,
|
8
|
+
from mdbub import BUILD_INFO, get_version
|
9
9
|
from mdbub.commands.quickmode_config import CONFIG_FILENAME, get_xdg_config_path
|
10
10
|
|
11
11
|
|
12
12
|
def main() -> None:
|
13
13
|
"""Print version, build info, and config path."""
|
14
|
-
version =
|
14
|
+
version = get_version()
|
15
15
|
build_info = BUILD_INFO
|
16
16
|
|
17
17
|
# Rich output with more details
|
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
|
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
|
File without changes
|