# HG changeset patch
# User Jeff Hammel <jhammel@mozilla.com>
# Date 1335752291 25200
# Node ID 0c47bcb63048021f609e1539ca199e3790a16dce
# Parent  bfe4234ee6f4126e6ea7f7825c2240ca5750d1a2
remove MakeItSo vestiges (for now) and bump version

diff -r bfe4234ee6f4 -r 0c47bcb63048 configuration/template.py
--- a/configuration/template.py	Sun Apr 29 01:05:49 2012 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-
-"""
-configuration template for makeitso
-"""
-
-import sys
-from cli import MakeItSoCLI
-from optparse import OptionParser
-from template import MakeItSoTemplate
-
-class configurationTemplate(MakeItSoTemplate):
-  """
-  configuration template
-  """
-  name = 'configuration'
-  templates = ['template']
-  look = True
-
-class TemplateCLI(MakeItSoCLI):
-  """
-  CLI driver for the configuration template
-  """
-
-def main(args=sys.argv[:]):
-  cli = TemplateCLI()
-  cli(*args)
-  
-if __name__ == '__main__':
-  main()  
-
-
diff -r bfe4234ee6f4 -r 0c47bcb63048 setup.py
--- a/setup.py	Sun Apr 29 01:05:49 2012 -0700
+++ b/setup.py	Sun Apr 29 19:18:11 2012 -0700
@@ -4,8 +4,8 @@
 
 import os
 
-version = "0.1.2"
-dependencies = ['MakeItSo', 'PyYAML']
+version = "0.2"
+dependencies = ['PyYAML']
 
 try:
     import json