Metadata-Version: 1.1
Name: dectools
Version: 0.1.4
Summary: decorator toolkit library
Home-page: http://charlesmerriam.com/dectools/
Author: Charles Merriam
Author-email: charles.merriam@gmail.com
License: MIT License
Description: ========
        DecTools
        ========
        
        DecTools provides a library of tools for creating Python decorators.  It
        unifies usage between class decorators, decorators requiring arguments,
        and simple decorators.  It also provides correct names, doc, and function
        signatures for decorated functions.  Typical usage often looks like this::
        
        @make_call_once
        def register_callback(function):
        gui.callback_create(function.__name__, function)
        
        @make_call_before
        def require_login(function, args, kwargs, page_name):
        while not current_user_id():
        ...
        
        @register
        @require_login("Summary of Items")
        def view_summary():
        ...
        
        You can find manuals in docs/index.html.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Requires: decorator (>=3.1)
