Metadata-Version: 1.1
Name: django-taxonomy
Version: 0.0.2
Summary: Taxonomy Model to use for django categories
Home-page: http://www.ohmypixel.com/
Author: George Georgiou
Author-email: george@ohmypixel.com
License: LGPL
Description: ===================
        Django taxonomy
        ===================
        
        Base class which provides convenient categorising methods to use as a foreign key to models
        
        Quickstart
        ==========
        
        Add apps to installed apps
        --------------------------
        
        Add
        
            'taxonomy',
            'mptt',
        
        to your INSTALLED_APPS.
        
        Prepare Database
        ----------------
        
            ./manage.py migrate
        
        Usage
        =====
        
        Simply extend TaxonomyModel when creating your categories. The model has the attributes name, slug, parent, weight and published
        
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
