Fix directly accessible package modules.
parent
db7c2760ae
commit
3c07dfc4fd
|
@ -34,9 +34,13 @@ __authors__ = copyleft.authors
|
|||
__license__ = copyleft.full_text
|
||||
__copyleft__ = copyleft.copyright
|
||||
|
||||
__all__ = ["GPG"]
|
||||
## do not set __package__ = "gnupg", else we will end up with
|
||||
## gnupg.<*allofthethings*>
|
||||
__all__ = ["GPG", "_util", "_parsers", "_meta", "_logger"]
|
||||
|
||||
## avoid the "from gnupg import gnupg" idiom
|
||||
del gnupg
|
||||
del absolute_import
|
||||
del copyleft
|
||||
del get_versions
|
||||
del _version
|
||||
|
|
Loading…
Reference in New Issue