Metadata-Version: 1.1
Name: clickclick
Version: 0.2
Summary: Click utility functions
Home-page: https://github.com/zalando/python-clickclick
Author: Henning Jacobs
Author-email: henning.jacobs@zalando.de
License: Apache License 2.0
Description: ===========
        Click Click
        ===========
        
        Utility functions for the wonderful `Click library`_.
        Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary.
        
        
        Usage
        =====
        
        .. code-block:: python
        
            from click.click import Action
        
            with Action('Performing remote call..') as act:
                do_something()
                act.progress()
                do_something_else()
        
        
        .. _Click library: http://click.pocoo.org/3/
        
Keywords: click console terminal cli
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
