- Fixed missing **extra collection in
  setup.py which prevented setup.py
  from running 2to3 on install.
  [ticket:148]
diff --git a/CHANGES b/CHANGES
index d25f1b9..17a0047 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,9 @@
 0.3.6
+- Fixed missing **extra collection in 
+  setup.py which prevented setup.py
+  from running 2to3 on install.
+  [ticket:148]
+  
 - New flag on Template, TemplateLookup - 
   strict_undefined=True, will cause
   variables not found in the context to 
diff --git a/setup.py b/setup.py
index f6c6a66..c1c0805 100644
--- a/setup.py
+++ b/setup.py
@@ -64,4 +64,5 @@
       [babel.extractors]
       mako = mako.ext.babelplugin:extract
       """,
+      **extra
 )