Metadata-Version: 1.1
Name: django-pycharm-debug-middleware
Version: 1.0.2
Summary: A django middleware to debug exceptions in PyCharm's PyDev debugger
Home-page: https://github.com/gabejackson/django-pycharm-debug-middleware
Author: Gabe Jackson
Author-email: gabejackson@cxg.ch
License: MIT License
Description: django-pycharm-debug-middleware
        ===============================
        
        A django middleware to debug exceptions in PyCharm's PyDev debugger.
        
        Simply add the ExceptionMiddleware to your middleware classes and run PyCharm in Debug mode to handle Exceptions within PyCharm's PyDev Debugger.
        
        Usage
        =====
        
        Append the middleware to your MIDDLEWARE_CLASSES and activate DEBUG_PROPAGATE_EXCEPTIONS::
        
            MIDDLEWARE_CLASSES += ('pycharm_debug_middleware.middleware.ExceptionMiddleware', )
            DEBUG_PROPAGATE_EXCEPTIONS = True
        
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
