--- gozerbot-0.99.1.orig/build/lib/gplugs/alchemy/__init__.py
+++ gozerbot-0.99.1/build/lib/gplugs/alchemy/__init__.py
@@ -0,0 +1,25 @@
+# gozerbot basic plugins
+#
+#
+
+""" register all .py files """
+
+__copyright__ = 'this file is in the public domain'
+
+import os
+
+(f, tail) = os.path.split(__file__)
+__all__ = []
+
+for i in os.listdir(f):
+    if i.endswith('.py'):
+        __all__.append(i[:-3])
+    elif os.path.isdir(f + os.sep + i) and not i.startswith('.'):
+        __all__.append(i)
+
+try:
+    __all__.remove('__init__')
+except:
+    pass
+
+__plugs__ = __all__
