diff intentmademanifest/template.py @ 0:67cfeffa0d90

stub from template
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 07 Apr 2013 03:07:39 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/intentmademanifest/template.py	Sun Apr 07 03:07:39 2013 -0700
@@ -0,0 +1,32 @@
+#!/usr/bin/env python
+
+"""
+IntentMadeManifest template for makeitso
+"""
+
+import sys
+from cli import MakeItSoCLI
+from optparse import OptionParser
+from template import MakeItSoTemplate
+
+class IntentMadeManifestTemplate(MakeItSoTemplate):
+  """
+  IntentMadeManifest template
+  """
+  name = 'IntentMadeManifest'
+  templates = ['template']
+  look = True
+
+class TemplateCLI(MakeItSoCLI):
+  """
+  CLI driver for the IntentMadeManifest template
+  """
+
+def main(args=sys.argv[:]):
+  cli = TemplateCLI()
+  cli(*args)
+  
+if __name__ == '__main__':
+  main()  
+
+