diff --git a/nacl/__init__.py b/nacl/__init__.py
index 6642344d74f40139230c8d06ff6d66ad9421d04f..53b5d256072ee8a76dbc59890b8f625206c161cd 100644
--- a/nacl/__init__.py
+++ b/nacl/__init__.py
@@ -1 +1,13 @@
+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 -