Metadata-Version: 1.1
Name: django-gdm
Version: 0.2
Summary: Genealogy Data Models for Django
Home-page: https://github.com/ishahid/django-gdm
Author: Imran Shahid
Author-email: narmi79@gmail.com
License: MIT License
Description: =====================
        Genealogy Data Models
        =====================
        
        GDM is a set of simple Django models for Genealogy based data
        structures (family trees).
        
        Quick start
        -----------
        
        1. Add "gdm" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'gdm',
            )
        
        2. Run `python manage.py migrate` to create the polls models.
        
        3. Include the GDM models in your project like this::
        
            from gdm.models.tree import Person, Family
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a persons and families (you'll need the Admin app enabled).
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
