Metadata-Version: 1.1
Name: django-useful
Version: 0.1.1
Summary: Reusable Django snippets
Home-page: http://github.com/yprez/django-useful
Author: Yuri Prezument
Author-email: y@yprez.com
License: ISC
Description: =============
        django-useful
        =============
        
        A collection of reusable Django snippets.
        
        
        Unlike other similar packages, I'll try to keep it fully tested, documented,
        and compatible with several Django and Python versions.
        
        
        **Travis CI build status:** |travis-ci-status|
        
        
        **Work in progress**:
        Currently this package is still under development, and intended mainly for my
        personal use. New features will be added gradually.
        
        
        **Compatible with:**
        
        * **Python:** 2.6, 2.7
        * **Django:** 1.3, 1.4
        * **Celery:** 2.5, 3.0 *(optional)*
        
        Installation
        ------------
        
        Install by using pip or easy_install::
        
          pip install django-useful
        
        Or install from source::
        
            git clone git@github.com:yprez/django-useful.git
            cd django-useful
            python setup.py install
        
        To add this application into your project, just add it to your
        ``INSTALLED_APPS`` setting::
        
            INSTALLED_APPS = (
                ...
                'useful',
            )
        
        
        ------------
        
        
        For more details, see the `Documentation`_.
        
        
        .. _`Documentation`: http://django-useful.rtfd.org/
        
        .. |travis-ci-status| image:: https://secure.travis-ci.org/yprez/django-useful.png?branch=master
           :target: http://travis-ci.org/yprez/django-useful
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
