Skip to content
Snippets Groups Projects
Commit 64d75740 authored by Donald Stufft's avatar Donald Stufft
Browse files

Add meta information to the nacl package

parent 58e2ef6c
No related branches found
No related tags found
No related merge requests found
from . import __about__
from . import hash # pylint: disable=W0622
__all__ = ["hash"] + __about__.__all__
# - Meta Information -
# This is pretty ugly
for attr in __about__.__all__:
if hasattr(__about__, attr):
globals()[attr] = getattr(__about__, attr)
# - End Meta Information -
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment