Metadata-Version: 1.1
Name: django-ancestry-relation
Version: 0.4
Summary: A Django app that makes an abstract Node model available for flat stacking hierarchical data in a database.
Home-page: https://github.com/aaronmarkey/django-ancestry-relation
Author: Aaron Markey
Author-email: markeyaaron@gmail.com
License: BSD License 
Description: Django Ancestry Relation
        ------------------------
        Provides an abstract model class for heirarchical data to be stored in a database. 
        Provides a manager to interface with the model.
        
        Documentation is in the "docs" directory.
        
        Requirements
        ------------
        * Python 3.4 or higher
        * Django 1.11
        
        Quick start
        -----------
        1. Install via pip `pip install django-ancestry-relation`
        2. Add "django_ancestry_relation" to your INSTALLED_APPS setting like this::
        ```
        INSTALLED_APPS = [
            ...,
            'django_ancestry_relation'
        ]
        ```
        
        Notes
        -----
        * Most efficient using Postgres as Django DB backend.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
