Metadata-Version: 1.0
Name: django-developer-toolkit
Version: 0.1.0
Summary: Django utility app for Django developers.
Home-page: https://github.com/PragmaticMates/django-developer-toolkit
Author: Pragmatic Mates
Author-email: info@pragmaticmates.com
License: GPL License
Description: django-developer-toolkit
        ========================
        
        Django utility app for Django developers with these features:
        
        - settings constants
        - debugging email configuration
        - internal server error view
        - environment constants
        
        Tested on Django 1.4.5.
        
        
        Requirements
        ------------
        - Django
        
        
        Installation
        ------------
        
        1. Install python library using pip: ``pip install django-developer-toolkit``
        
        2. Add ``developer_toolkit`` to ``INSTALLED_APPS`` in your Django settings file
        
        3. Include ``developer_toolkit.urls`` in your urls.py
        
        
        Recommendation
        --------------
        You may like to add toolkit features to admin. To do so, follow these steps:
        
        1. Install ``django-smart-extends`` python library using pip: ``pip install django-smart-extends``
        
        2. Add ``smartextends`` to ``INSTALLED_APPS`` in your Django settings file
        
        3. Add ``os.path.join(ABSOLUTE_PATH_TO_DEVELOPER_TOOLKIT, 'templates'),`` to ``TEMPLATE_DIRS`` in your Django settings file, where ABSOLUTE_PATH_TO_DEVELOPER_TOOLKIT is absolute path to developer toolkit library. For example: ``'/home/project/environment/lib/python2.7/site-packages/developer_toolkit'``
        
        If you have a better idea how to do that, please let me know. Thanks.
        
        Authors
        -------
        
        Library is by `Erik Telepovsky` from `Pragmatic Mates`_. See `our other libraries`_.
        
        .. _Pragmatic Mates: http://www.pragmaticmates.com/
        .. _our other libraries: https://github.com/PragmaticMates
        
Keywords: django toolkit developer utility
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 3 - Alpha
