Metadata-Version: 1.0
Name: django-posts
Version: 0.2.0
Summary: A generic posts app for django
Home-page: https://github.com/byteweaver/django-posts
Author: noxan
Author-email: contact@byteweaver.net
License: MIT License
Description: django-posts
        ============
        
        A generic django application to kick start nearly any kind of post handling.
        
        ## Key features
        
        * very generic implementation and modular structure
        * easy to customize and extend
        
        ## Installation
        
        If you want to install the latest stable release from PyPi:
        
            $ pip install django-posts
        
        If you want to install the latest development version from GitHub:
        
            $ pip install -e git://github.com/byteweaver/django-posts#egg=django-posts
        
        Add `posts` to your `INSTALLED_APPS`:
        
            INSTALLED_APPS = (
                ...
                'posts',
                ...
            )
        
        Hook this app into your ``urls.py``:
        
            urlpatterns = patterns('',
                ...
                url(r'^your-url/$', include('posts.urls')),
                ...
            )
        
        ## Versions
        
        The last upgrade, as starting with version 0.2.x, is incompatible with all versions below and does no longer feature south support!
        
        - version 0.2.x requires Django 1.5
        - all versions below run with Django1.4 (and maybe below, not tested)
        
Platform: UNKNOWN
