summaryrefslogtreecommitdiff
path: root/src/leap/mx/vendor/pgpy/__init__.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-06-26 15:06:41 +0200
committerKali Kaneko <kali@leap.se>2017-06-27 10:33:48 +0200
commit59504c7ddf7aab71614d691e705d386f58b5100d (patch)
treeea6afce37890a23cd088eac50587c3293035e78c /src/leap/mx/vendor/pgpy/__init__.py
parente82b8143d3e9b2f62650e06798eee262885036c2 (diff)
[pkg] vendor pgpy 0.4.1
Diffstat (limited to 'src/leap/mx/vendor/pgpy/__init__.py')
-rw-r--r--src/leap/mx/vendor/pgpy/__init__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/leap/mx/vendor/pgpy/__init__.py b/src/leap/mx/vendor/pgpy/__init__.py
new file mode 100644
index 0000000..b80740d
--- /dev/null
+++ b/src/leap/mx/vendor/pgpy/__init__.py
@@ -0,0 +1,21 @@
+""" PGPy :: Pretty Good Privacy for Python
+"""
+from ._author import *
+
+from .pgp import PGPKey
+from .pgp import PGPKeyring
+from .pgp import PGPMessage
+from .pgp import PGPSignature
+from .pgp import PGPUID
+
+__all__ = ['__author__',
+ '__copyright__',
+ '__license__',
+ '__version__',
+ 'constants',
+ 'errors',
+ 'PGPKey',
+ 'PGPKeyring',
+ 'PGPMessage',
+ 'PGPSignature',
+ 'PGPUID', ]