annotate makeitso/python_module/{{module}}.py @ 141:4ee086606772

add extra data
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 29 Feb 2012 10:42:44 -0800
parents d9201f911458
children a203f79c537f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 #!/usr/bin/env python
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 """
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 {{module}}
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5 """
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7 import sys
130
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
8 import optparse
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
9
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
10 def main(args=sys.argv[1:]):
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
12 # parse command line arguments
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
13 usage = '%prog [options] ...'
130
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
14
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
15 # description formatter
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
16 class PlainDescriptionFormatter(optparse.IndentedHelpFormatter):
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
17 def format_description(self, description):
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
18 if description:
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
19 return description + '\n'
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
20 else:
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
21 return ''
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
22
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
23 parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter())
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
24 options, args = parser.parse_args(args)
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
25
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
26 if __name__ == '__main__':
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
27 main()