Metadata-Version: 1.0
Name: bake_o_matic
Version: 0.1
Summary: baker boilerplate reduction
Home-page: UNKNOWN
Author: tengu
Author-email: karasuyamatengu@gmail.com
License: LGPL
Description: import bake_o_matic at the end of a script to turn it into a baked command script.
        
        $ cat say.py
        #!/usr/bin/python
        
        def hi(msg, **opt):
            "greet"
            print 'OH HAI', msg, opt
        
        import bake_o_matic
        
        $ ./say.py 
        Usage: ./say.py COMMAND <options>
        
        Available commands:
         hi  greet
        
        Use './say.py <command> --help' for individual command help.
        
        
        $ ./say.py hi ho
        OH HAI ho {}
        
        
        
Platform: UNKNOWN
