mininterface 0.4.1__tar.gz → 0.4.2__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.
- {mininterface-0.4.1 → mininterface-0.4.2}/PKG-INFO +2 -1
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/TextualInterface.py +1 -1
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/auxiliary.py +1 -1
- {mininterface-0.4.1 → mininterface-0.4.2}/pyproject.toml +2 -1
- {mininterface-0.4.1 → mininterface-0.4.2}/README.md +0 -0
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/GuiInterface.py +0 -0
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/Mininterface.py +0 -0
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/TuiInterface.py +0 -0
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/__init__.py +0 -0
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/__main__.py +0 -0
- {mininterface-0.4.1 → mininterface-0.4.2}/mininterface/common.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mininterface
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: A minimal access to GUI, TUI, CLI and config
|
|
5
5
|
Home-page: https://github.com/CZ-NIC/mininterface
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Requires-Dist: envelope
|
|
16
16
|
Requires-Dist: pyyaml
|
|
17
17
|
Requires-Dist: requests
|
|
18
|
+
Requires-Dist: textual
|
|
18
19
|
Requires-Dist: tkinter-tooltip
|
|
19
20
|
Requires-Dist: tkinter_form
|
|
20
21
|
Requires-Dist: tyro
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from ast import literal_eval
|
|
2
2
|
from dataclasses import _MISSING_TYPE, dataclass, field
|
|
3
3
|
from types import UnionType
|
|
4
|
-
from typing import Any
|
|
4
|
+
from typing import Any
|
|
5
5
|
from dataclasses import fields
|
|
6
6
|
from textual import events
|
|
7
7
|
from textual.app import App, ComposeResult
|
|
@@ -3,7 +3,7 @@ import os
|
|
|
3
3
|
import re
|
|
4
4
|
from argparse import Action, ArgumentParser
|
|
5
5
|
from dataclasses import dataclass
|
|
6
|
-
from typing import Any, Callable, Iterable, Literal, Optional,
|
|
6
|
+
from typing import Any, Callable, Iterable, Literal, Optional, TypeVar, Union, get_args, get_type_hints
|
|
7
7
|
from unittest.mock import patch
|
|
8
8
|
|
|
9
9
|
try:
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "mininterface"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.2"
|
|
8
8
|
description = "A minimal access to GUI, TUI, CLI and config"
|
|
9
9
|
authors = ["Edvard Rejthar <edvard.rejthar@nic.cz>"]
|
|
10
10
|
license = "GPL-3.0-or-later"
|
|
@@ -17,6 +17,7 @@ tyro = "*"
|
|
|
17
17
|
pyyaml = "*"
|
|
18
18
|
envelope = "*"
|
|
19
19
|
requests = "*"
|
|
20
|
+
textual = "*"
|
|
20
21
|
tkinter-tooltip = "*"
|
|
21
22
|
tkinter_form = "*"
|
|
22
23
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|