Metadata-Version: 1.1
Name: wires
Version: 18.1.0rc1
Summary: Python Wires
Home-page: https://github.com/tmontes/python-wires/
Author: Tiago Montes
Author-email: tiago.montes@gmail.com
License: MIT
Description: Python Wires: Simple Call Wiring
        ================================
        
        .. image:: http://img.shields.io/pypi/v/wires.svg
           :target: https://pypi.python.org/pypi/wires
           :alt: PyPI
        
        .. image:: https://img.shields.io/travis/tmontes/python-wires.svg
           :target: https://travis-ci.org/tmontes/python-wires
           :alt: CI Status
        
        .. image:: https://codecov.io/github/tmontes/python-wires/branch/master/graph/badge.svg
           :target: https://codecov.io/github/tmontes/python-wires
           :alt: Test Coverage
        
        .. image:: https://readthedocs.org/projects/python-wires/badge/?version=latest
           :target: https://python-wires.readthedocs.io/
           :alt: Documentation
        
        
        |
        
        
        ``wires`` is a library to facilitate "call wiring" by decoupling callers from callees; it can be used as a callable-based event system or publish-subscribe like solution.
        
        Minimal example:
        
        .. code-block:: python
        
            from wires import w
        
            def my_callable():
                print('Hello from wires!')
        
            w.this_callable.wire(my_callable)
            w.this_callable()
        
        
        .. marker-end-welcome-dont-remove
        
        
        Full documentation at https://python-wires.readthedocs.org/.
        
        
        
        
        Thanks
        ------
        
        .. marker-start-thanks-dont-remove
        
        - Hynek Schlawack for the articles `Sharing Your Labor of Love: PyPI Quick and Dirty <https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/>`_ and `Testing & Packaging <https://hynek.me/articles/testing-packaging/>`_.
        
        - Stuart Colville for the article `Including parts of README.rst in your sphinx docs <https://muffinresearch.co.uk/selectively-including-parts-readme-rst-in-your-docs/>`_.
        
        .. marker-end-thanks-dont-remove
        
        
        
        About
        -----
        
        .. marker-start-about-dont-remove
        
        Python Wires was created by Tiago Montes.
        
        .. marker-end-about-dont-remove
        
        
Keywords: functions,boilerplate
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
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.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
