Metadata-Version: 1.1
Name: django-bird-colony
Version: 0.4.0
Summary: A simple Django app for managing a bird colony
Home-page: https://github.com/melizalab/django-bird-colony
Author: C Daniel Meliza
Author-email: dan@meliza.org
License: UNKNOWN
Description: 
        ## bird-colony
        
        bird-colony is a Django application used to manage bird colonies (including breeding colonies).
        You may find that it can also be used for non-avian species.
        
        The admin interface is the primary tool used to create and update bird records, but there is a growing collection of views that can be used to browse the database and perform common updates (like adding clutches).
        
        bird-colony is licensed for you to use under the Gnu Public License, version 3. See COPYING for details
        
        ### Quick start
        
        1. Install the package from source: `python setup.py install`. Worth putting in a virtualenv.
        
        1. Add `birds` to your INSTALLED_APPS setting like this:
        
        ```python
        INSTALLED_APPS = (
            ...
            'birds',
        )
        ```
        
        2. Include the birds URLconf in your project urls.py like this::
        
        ```python
        url(r'^birds/', include(birds.urls')),
        ```
        
        3. Run `python manage.py migrate` to create the birds models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/birds/
           to create birds, events, etc. (you'll need the Admin app enabled).
        
        5. Visit http://127.0.0.1:8000/birds/ to use views.
        
        
        ### Changelog
        
        In the 0.4.0 release, the primary key for animal records became the animal's uuid. To migrate from previous version, data must be exported as JSON under the 0.3.999 release and then imported under 0.4.0
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
