artemis_framework 0.3.1__tar.gz → 0.3.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.
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/PKG-INFO +4 -1
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/app.py +2 -2
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/settings.py +1 -1
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/pyproject.toml +10 -1
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/LICENSE +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/README.md +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/__main__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/__main__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/_gpg_binary.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/armor_binary.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/encrypt_decrypt.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/gpg_context.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/key_management.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/macos_shim.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/sign_verify.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/modals/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/screens/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/widgets/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/elysium/__ini +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/elysium/__init__.py +0 -0
- {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/tartarus/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: artemis_framework
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: A package for doing great things!
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -10,7 +10,10 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.13
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Requires-Dist: cryptography (>=49.0.0,<50.0.0)
|
|
14
|
+
Requires-Dist: pyperclip (>=1.11.0,<2.0.0)
|
|
13
15
|
Requires-Dist: python-gnupg (>=0.5.6,<0.6.0)
|
|
16
|
+
Requires-Dist: textual (>=8.2.8,<9.0.0)
|
|
14
17
|
Description-Content-Type: text/markdown
|
|
15
18
|
|
|
16
19
|
# artemis_framework
|
|
@@ -49,7 +49,7 @@ class PlaceholderScreen(Screen):
|
|
|
49
49
|
yield Label(
|
|
50
50
|
f"\n [ {self._title} ]\n\n This screen is not yet implemented.\n Press [b]Q[/b] or [b]Escape[/b] to [i][u]go back[/u][/i].",
|
|
51
51
|
markup=True,
|
|
52
|
-
id="placeholder
|
|
52
|
+
id="placeholder-label"
|
|
53
53
|
)
|
|
54
54
|
yield Footer()
|
|
55
55
|
|
|
@@ -224,7 +224,7 @@ class AsphodelApp(App):
|
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
|
|
227
|
-
|
|
227
|
+
_WELCOME_TEXT = """\
|
|
228
228
|
|
|
229
229
|
██████╗ ██████╗ ██████╗
|
|
230
230
|
██╔════╝ ██╔══██╗██╔════╝
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/settings.py
RENAMED
|
@@ -11,7 +11,7 @@ def _config_dir() -> Path:
|
|
|
11
11
|
if os.name == "nt":
|
|
12
12
|
base = Path(os.environ.get("APPDATA", Path.home()))
|
|
13
13
|
else:
|
|
14
|
-
base = Path(os.environ.get("XDG_CONFIG_HOME", Path.
|
|
14
|
+
base = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"))
|
|
15
15
|
return base / "artemis-framework" / "asphodel"
|
|
16
16
|
|
|
17
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "artemis_framework"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.2"
|
|
4
4
|
description = "A package for doing great things!"
|
|
5
5
|
authors = ["Dylan Garrett"]
|
|
6
6
|
license = "MIT"
|
|
@@ -9,8 +9,17 @@ readme = "README.md"
|
|
|
9
9
|
[tool.poetry.dependencies]
|
|
10
10
|
python = "^3.13"
|
|
11
11
|
python-gnupg = "^0.5.6"
|
|
12
|
+
textual = "^8.2.8"
|
|
13
|
+
cryptography = "^49.0.0"
|
|
14
|
+
pyperclip = "^1.11.0"
|
|
12
15
|
|
|
13
16
|
|
|
14
17
|
[build-system]
|
|
15
18
|
requires = ["poetry-core>=1.0.0"]
|
|
16
19
|
build-backend = "poetry.core.masonry.api"
|
|
20
|
+
|
|
21
|
+
[dependency-groups]
|
|
22
|
+
dev = [
|
|
23
|
+
"ipython (>=9.15.0,<10.0.0)",
|
|
24
|
+
"textual-dev (>=1.8.0,<2.0.0)"
|
|
25
|
+
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/__init__.py
RENAMED
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/_gpg_binary.py
RENAMED
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/armor_binary.py
RENAMED
|
File without changes
|
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/gpg_context.py
RENAMED
|
File without changes
|
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/macos_shim.py
RENAMED
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/sign_verify.py
RENAMED
|
File without changes
|
{artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|