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.
Files changed (25) hide show
  1. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/PKG-INFO +4 -1
  2. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/app.py +2 -2
  3. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/settings.py +1 -1
  4. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/pyproject.toml +10 -1
  5. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/LICENSE +0 -0
  6. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/README.md +0 -0
  7. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/__init__.py +0 -0
  8. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/__main__.py +0 -0
  9. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/__init__.py +0 -0
  10. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/__main__.py +0 -0
  11. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/__init__.py +0 -0
  12. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/_gpg_binary.py +0 -0
  13. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/armor_binary.py +0 -0
  14. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/encrypt_decrypt.py +0 -0
  15. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/gpg_context.py +0 -0
  16. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/key_management.py +0 -0
  17. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/macos_shim.py +0 -0
  18. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/core/sign_verify.py +0 -0
  19. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/__init__.py +0 -0
  20. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/modals/__init__.py +0 -0
  21. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/screens/__init__.py +0 -0
  22. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/asphodel/tui/widgets/__init__.py +0 -0
  23. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/elysium/__ini +0 -0
  24. {artemis_framework-0.3.1 → artemis_framework-0.3.2}/artemis_framework/elysium/__init__.py +0 -0
  25. {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.1
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=label"
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
- WELCOME_TEXT = """\
227
+ _WELCOME_TEXT = """\
228
228
 
229
229
  ██████╗ ██████╗ ██████╗
230
230
  ██╔════╝ ██╔══██╗██╔════╝
@@ -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.hom() / ".config"))
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.1"
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
+ ]