Metadata-Version: 1.0
Name: callbacks
Version: 0.1.3
Summary: Simple callbacks using decorators
Home-page: https://github.com/davidlmorton/callbacks
Author: David Morton
Author-email: davidlmorton@gmail.com
License: LICENSE.txt
Description: Callbacks lets you use decorator syntax to set callbacks on methods or functions.
        
        ```python
        from callbacks import supports_callbacks
        
        def callback():
            print "Polly!"
        
        @supports_callbacks
        def target():
            print "hello",
        
        target.add_callback(callback)
        
        print "This should print 'hello Polly!':"
        target() # prints "hello Polly!"
        ```
        
        [![Build Status](https://secure.travis-ci.org/davidlmorton/callbacks.png?branch=master)](https://travis-ci.org/davidlmorton/callbacks)
        
Platform: UNKNOWN
