Metadata-Version: 1.1
Name: django-forums
Version: 0.1.2
Summary: Small standalone django forums application
Home-page: https://github.com/byteweaver/django-forums
Author: byteweaver
Author-email: contact@byteweaver.net
License: MIT License
Description: django-forums
        ===============
        
        Small standalone django forums application.
        
        ## Key features
        
        * Reusable forums app
        * Templates use Bootstrap (twitter) styles
        * ...
        
        ## Installation
        
        If you want to install the latest stable release from PyPi:
        
            $ pip install django-forums
        
        If you want to install the latest development version from GitHub:
        
            $ pip install -e git://github.com/byteweaver/django-forums#egg=django-forums
        
        Add `forums` to your `INSTALLED_APPS`:
        
            INSTALLED_APPS = (
                ...
                'forums',
                ...
            )
        
        Hook this app into your ``urls.py``:
        
            urlpatterns = patterns('',
                ...
                url(r'^your-url/$', include('forums.urls', namespace='forums')),
                ...
            )
        
        ## Versions
        
        With the latest update, starting from version 0.1.x, django-forums supports django 1.5 and beyond. The default templates are now based on bootstrap-3.
        If you use an older version of django or bootstrap, please have a look at version 0.9.0, but remember it is no longer maintained.
        
        
        ## Tests
        
        To run the test cases simply call:
        
            $ python setup.py test
        
        or to run them inside a virtualenv use:
        
            $ make test
        
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
