Metadata-Version: 1.1
Name: django-dag
Version: 1.2
Summary: Directed Acyclic Graph implementation for Django 1.0+
Home-page: https://github.com/elpaso/django-dag
Author: Alessandro Pasotti
Author-email: apasotti@gmail.com
License: LICENSE.txt
Description: Django DAG
        ----------
        
        Django-dag is a small reusable app which implements a Directed Acyclic Graph.
        
        Usage
        .....
        
        Django-dag uses abstract base classes, to use it you must create your own
        concrete classes that inherit from Django-dag classes.
        
        The `dag_test` app contains a simple example and a unit test to show
        you its usage.
        
        Example::
        
            class ConcreteNode(node_factory('ConcreteEdge')):
                """
                Test node, adds just one field
                """
                name = models.CharField(max_length = 32)
        
            class ConcreteEdge (edge_factory(ConcreteNode, concrete = False)):
                """
                Test edge, adds just one field
                """
                name = models.CharField(max_length = 32, blank = True, null = True)
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
