Metadata-Version: 1.1
Name: clize
Version: 2.4
Summary: Function decorator to quickly turn functions into CLIs as we know them
Home-page: https://github.com/epsy/clize
Author: Yann Kaiser
Author-email: kaiser.yann@gmail.com
License: UNKNOWN
Description: 
        This decorator will turn your normal python functions into proper
        shell commands.
        
        For example, this code::
        
            from clize import clize, run
        
            @clize
            def echo(reverse=False, *text):
                # ...
        
            if __name__ == '__main__':
                run(echo)
        
        will yield the CLI described by this::
        
            Usage: fn [OPTIONS] [text...]
        
            Positional arguments:
              text...  
        
            Options:
              --reverse   
              -h, --help   Show this help
        
        More features, such as flag aliases, subcommands and python 3 syntax support are described in the README.rst file.
        
        
Keywords: CLI,options,arguments,getopts,flags,decorator,subcommands
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
