Metadata-Version: 1.1
Name: eventlite
Version: 0.1a
Summary: UNKNOWN
Home-page: PACKAGE_URL
Author: Samuele Santi
Author-email: UNKNOWN
License: BSD License
Description: Eventlite
        #########
        
        Light "events" for Python functions.
        
        
        Example:
        
        .. code-block:: python
        
            import eventlite
        
            def myfunction(foo):
                eventlite.emit(foo)
        
            def handler(foo):
                print('You said: {0}'.format('Hello'))
        
            with eventlite.handler(handler):
                myfunction('Hello')
        
        
        History
        #######
        
        v0.1a
        =====
        
        - Initial version, with handling of simple events through a
          context-manager dispatching to "contexts" in a thread-local stack.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2.7
