Metadata-Version: 1.0
Name: django-farm
Version: 0.3.2
Summary: An application for managing farm related items, specifically animals and products.
Home-page: http://github.com/powellc/django-farm
Author: Colin Powell
Author-email: colin@onecardinal.com
License: BSD
Download-URL: http://github.com/powellc/django-farm/downloads
Description: Django Farm
        =============
        
        A pluggable django application to keep track of animals on a farm. Simple.
        
        Models
        --------
        
        Species
          name -> char
          slug -> from(name)
          
        Breed
          species -> species
          name -> char
          slug -> from(name)
          
        Animal
          name -> char
          slug -> from(name)
          breed -> breed
          mother -> animal
          father -> animal
          birthday -> date
          birthtime -> time
          description -> text
          photos -> photo[photologue]
        
        ProductType
          name -> char (e.g. produce, meat, soap, preserves...)
          slug -> from(name)
          description -> text
        
        Product
          name -> char
          type -> product type
          description -> text
          photos -> photo(s)[photologue]
          price -> float
          unit -> char (e.g. dozen, lb, half, whole)
          flexible_price -> char
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
