Metadata-Version: 1.1
Name: argscript
Version: 0.5
Summary: Generate argparse parser from function definitions.
Home-page: https://github.com/hoffmann/argscript
Author: Peter Hoffmann
Author-email: ph@peter-hoffmann.com
License: BSD
Description: 
        argscript 
        =========
        
        Argscript is a port of werkzeug.script to argparse. Argscript generates
        a an argparse command line parser from the function definitions of a script.
        
        An action is a function in the same module starting with `action_` which 
        takes a number of arguments where every argument has a default. The type 
        of the default value specifies the type of the argument. Arguments can 
        then be passed by using `--name=value` from the shell. [werkzeug.script]
        
        Installation
        ------------
        
        **development version:**::
        
            git clone git@github.com:hoffmann/argscript.git
            cd argscript
            sudo python setup.py install
        
        
        **from pypi.python.org:**::
        
            pip install argscript
        
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
