Metadata-Version: 1.0
Name: profilehooks
Version: 1.4
Summary: Decorators for profiling individual functions
Home-page: http://mg.pov.lt/profilehooks/
Author: Marius Gedminas
Author-email: marius@gedmin.as
License: MIT
Description: profilehooks
        ============
        
        This is a module that helps you profile a single function (and all its callees)
        by dropping in a decorator::
        
        from profilehooks import profile
        
        @profile
        def my_function(args, etc):
        pass
        
        The documentation is available through ``pydoc profilehooks``.
        
        The home page for this module is http://mg.pov.lt/profilehooks
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
