Metadata-Version: 2.1
Name: django-fluo-post
Version: 0.1
Summary: Integrate posts with django
Home-page: https://bitbucket.org/rsalmaso/django-fluo-posts
Author: Raffaele Salmaso
Author-email: raffaele@salmaso.org
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
Requires-Dist: django-fluo

# django-fluo-posts #

A generic extensible django application to handle posts, as news or blog applications.
Based on `django-fluo`.


## Install ##

Add `posts.apps.PostsConfig` into your `INSTALLED_APPS`

```
#!python
INSTALLED_APPS = [
    ...
    "posts.apps.PostsConfig",
    ...
]
```

## CHANGES ##


0.1.0
=====


* initial relase


