Metadata-Version: 1.1
Name: django-abstract-related-model
Version: 0.1.0
Summary: Workaround for related abstract models issue.
Home-page: https://github.com/icaropires/django-related-abstract-model
Author: Ícaro Pires
Author-email: icaropsa@gmail.com
License: MIT
Description: Django Abstract Related Model
        =============================
        
        In django a related model can't be abstract because of db issues. This module offers a workaround, pratically it doesn't declare the abstract, just avoid it of being created on database, but allow the children. Database creation is needed so you can create relationships.
        
        Installing
        ----------
        
        .. code:: bash
        
            $ pip3 install abstract-related-model
        
        and add `abstract_related_model` to INSTALLED_APPS.
        
        Using
        -----
        
        .. code:: python
        
            from abstract_related_model.models import AbstractRelatedModel
        
            class ExampleAbstractRelatedModel(AbstractRelatedModel):
                pass
        
        
        Running tests
        -------------
        
        Go into example folder
        
        .. code:: bash
        
            $ cd example
        
        and run them
        
        .. code:: bash
        
            $ ./manage.py test
        
        Troubleshooting
        ---------------
        
        Check the example folder if you have any doubts. Or you can create an
        issue.
        
        
        |Build Status|
        ==============
        
        .. |Build Status| image:: https://travis-ci.org/icaropires/django-abstract-related-model.svg?branch=master
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
