Mercurial > hg > MakeItSo
view makeitso/script2package.py @ 164:6cd2894bb11c
stub: makeitso/script2package.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 06 Aug 2013 16:24:21 -0700 |
parents | |
children | aed8c4af5f26 |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ make a package from a .py file """ ### STUB ### # TODO: # - thing to make a setup.py from a .py file # - use makeitso templates -> directory structure import optparse import os import subprocess import sys def add_options(parser): """add options to the OptionParser instance""" def main(args=sys.argv[1:]): # parse command line options usage = '%prog [options] ...' class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): """description formatter for console script entry point""" def format_description(self, description): if description: return description.strip() + '\n' else: return '' parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) options, args = parser.parse_args(args) if __name__ == '__main__': main()