Metadata-Version: 1.1
Name: django_simple_forums
Version: 0.14.0
Summary: A simple forums app for Django
Home-page: http://github.com/smalls12/django_simple_forums
Author: Chathan Driehuys
Author-email: cdriehuys@gmail.com
License: GPLv3
Description: =============
        Simple Forums
        =============
        
        Important Note
        ==============
        
        This package is currently in early alpha (version < 1.0.0). This means that backwards incompatible changes can be introduced at any time as described `here <http://semver.org/#spec-item-4>`_.
        
        Installation
        ============
        
        The easiest way to install simple forums is using pip::
        
        	$ pip install django-simple-forums
        
        Usage
        =====
        
        Add ``simple_forums`` to your ``INSTALLED_APPS`` in ``settings.py``::
        
        	INSTALLED_APPS = [
        		# default django apps
        		...
        		'simple_forums',
        		...
        		# your custom apps
        	]
        
        In order to use the views included in simple forums, you must include the url patterns for the forums in your ``urls.py``::
        
        	url_patterns = [
        		...
        		url(r'^forums/', include('simple_forums.urls')),
        		...
        	]
        
        Finally, apply the migrations from simple forums::
        
        	$ ./manage.py migrate
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.4
