Metadata-Version: 1.1
Name: django-silk
Version: 0.1
Summary: A Django app for profiling other Django apps
Home-page: http://www.mtford.co.uk/projects/silk/
Author: Michael Ford
Author-email: mtford@gmail.com
License: The MIT License: http://www.opensource.org/licenses/mit-license.php
Description: =====
        Silky
        =====
        
        Silky smooth profiling for Django
        
        Quick start
        -----------
        
        1. Add "silk" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'silk',
            )
        
        2. Include the silk URLconf in your project urls.py like this::
        
            url(r'^silk/', include('silk.urls')),
        
        3. Run `python manage.py syncdb` to create the silk models.
        
        4. Start the development server and visit http://127.0.0.1:8000/silk/
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
