artemis_framework 0.2.2__tar.gz → 0.2.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.
Files changed (18) hide show
  1. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/PKG-INFO +2 -1
  2. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/gpg_context.py +7 -0
  3. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/pyproject.toml +2 -1
  4. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/LICENSE +0 -0
  5. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/README.md +0 -0
  6. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/__init__.py +0 -0
  7. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/__main__.py +0 -0
  8. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/__init__.py +0 -0
  9. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/__init__.py +0 -0
  10. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/_gpg_binary.py +0 -0
  11. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/armor_binary.py +0 -0
  12. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/encrypt_decrypt.py +0 -0
  13. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/key_management.py +0 -0
  14. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/macos_shim.py +0 -0
  15. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/asphodel/core/sign_verify.py +0 -0
  16. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/elysium/__ini +0 -0
  17. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/artemis_framework/elysium/__init__.py +0 -0
  18. {artemis_framework-0.2.2 → artemis_framework-0.2.3}/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.2.2
3
+ Version: 0.2.3
4
4
  Summary: A package for doing great things!
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -10,6 +10,7 @@ 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: python-gnupg (>=0.5.6,<0.6.0)
13
14
  Description-Content-Type: text/markdown
14
15
 
15
16
  # artemis_framework
@@ -28,6 +28,13 @@ def build_gpg(
28
28
  raise RuntimeError(f"Cannot create GNUPGHOME at {home}: {exc}") from exc
29
29
 
30
30
  try:
31
+ # gpg = gnupg.GPG(
32
+ # gnupghome=str(home),
33
+ # gpgbinary=binary,
34
+ # verbose=verbose,
35
+ # use_agent=use_agent,
36
+ # options=options or []
37
+ # )
31
38
  gpg = gnupg.GPG(
32
39
  gnupghome=str(home),
33
40
  gpgbinary=binary,
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "artemis_framework"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "A package for doing great things!"
5
5
  authors = ["Dylan Garrett"]
6
6
  license = "MIT"
@@ -8,6 +8,7 @@ readme = "README.md"
8
8
 
9
9
  [tool.poetry.dependencies]
10
10
  python = "^3.13"
11
+ python-gnupg = "^0.5.6"
11
12
 
12
13
 
13
14
  [build-system]