Remove everything except the GPG class from src/__init__.py.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-17 02:38:25 +00:00
parent 891ee9e7eb
commit 81312015ab
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 3 additions and 4 deletions

View File

@ -6,7 +6,6 @@ from gnupg import GPG
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
gnupg.__version__ = __version__
gnupg.__author__ = 'Isis Agora Lovecruft'
@ -14,7 +13,7 @@ gnupg.__contact__ = 'isis@leap.se'
gnupg.__url__ = 'https://github.com/isislovecruft/python-gnupg'
gnupg.__license__ = copyleft.disclaimer
__all__ = ["gnupg", "copyright",
"Crypt", "DeleteResult", "ListKeys",
"GenKey", "Sign", "Encrypt", "ImportResult", "Verify"]
__all__ = ["GPG"]
del copyleft
del get_versions