Metadata-Version: 1.1
Name: parguments
Version: 0.3.0
Summary: Parguments: A simple cli args parser for Python
Home-page: https://github.com/whtsky/parguments
Author: whtsky
Author-email: whtsky@me.com
License: MIT
Description: 
        
        parguments
        ==========
        
        A simple cli args parser for Python.
        
        Useful for creating command-line scripts.
        
        Example ::
        
            """
            catsup v1.0
        
            Usage:
                catsup init [<path>]
                catsup build
                catsup deploy
                catsup -h | --help
                catsup --version
        
            Options:
                -h --help             Show this screen and exit.
                -s --settings=<file>  path to config file. [default: config.json]
            """
            from parguments import Parguments
        
            parguments = Parguments(__doc__, version='1.0')
        
            @parguments.command
            def init(path):
              """
              Usage:
                catsup init [<path>]
        
              Options:
                -h --help             Show this screen and exit.
                -s --settings=<file>  path to setting file. [default: config.json]
              """
              pass
        
            @parguments.command
            def build(settings):
              """
              Usage:
                catsup build [-s <file>|--settings=<file>]
        
              Options:
                -h --help             Show this screen and exit.
                -s --settings=<file>  path to setting file. [default: config.json]
              """
              pass
        
            @parguments.command
            def deploy(settings):
              """
              Usage:
                catsup deploy [-s <file>|--settings=<file>]
        
              Options:
                -h --help             Show this screen and exit.
                -s --settings=<file>  path to setting file. [default: config.json]
              """
              pass
        
            if __name__ == '__main__':
              parguments.run()
        
        Documents at http://parguments.rtfd.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: License :: OSI Approved :: MIT License
