Metadata-Version: 1.1
Name: clibuilder
Version: 0.1.3
Summary: CLI builder using argparse.ArgumentParser-like interface
Home-page: https://github.com/anrosent/cli.git
Author: Anson Rosenthal
Author-email: anson.rosenthal@gmail.com
License: MIT License
Description: cli
        ===
        anrosent
        
        This module provides a class ```cli.CLI``` that simplifies writing Command Line Interfaces for applications. It uses the ```argparse``` module from the CPython standard library, which provides great help/error messaging, as well as argument validation. You can find a decorator-based alternative in ```flask.ext.script.Manager```, but here I've tried to emulate the ```argparse.ArgumentParser``` interface, with the bonus of no external dependencies.
        
        ### Example
        
        See ```example.py``` for a great intro.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development
Classifier: Intended Audience :: Developers
