Metadata-Version: 2.0
Name: plugs-post
Version: 0.1.1
Summary: Your project description goes here
Home-page: https://github.com/ricardolobo/plugs-post
Author: Ricardo Lobo
Author-email: ricardolobo@soloweb.pt
License: MIT
Keywords: plugs-post
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django-model-utils (>=2.0)
Requires-Dist: plugs-core (>=0.1.6)

=============================
Plugs Post
=============================

.. image:: https://badge.fury.io/py/plugs-post.png
    :target: https://badge.fury.io/py/plugs-post

.. image:: https://travis-ci.org/yo-solo/plugs-post.png?branch=master
    :target: https://travis-ci.org/yo-solo/plugs-post

.. image:: https://codecov.io/github/yo-solo/plugs-post/coverage.svg?branch=master
        :target: https://codecov.io/github/yo-solo/plugs-post?branch=master



Quick start
-----------

1. Install using Pip

   .. code-block:: bash

                   $ pip install plugs_post

2. Add it to INSTALLED_APPS

   .. code-block:: python

                   INSTALLED_APPS = (
                   # other apps
                   'plugs_post'
                   )

3. Run migrate

   .. code-block:: bash

                   $ python manage.py migrate plugs_post

4. Register the Viewsets

   .. code-block:: python

                   from plugs_post.views import PostViewSet, PostSectionViewSet

                   ROUTER = routers.DefaultRouter()

                   ROUTER.register(r'posts', PostViewSet)
                   ROUTER.register(r'post_sections', PostSectionViewSet)

                   urlpatterns = [
                   url(r'^', include(ROUTER.urls))
                   ]




History
-------

0.1.0 (2016-12-29)
++++++++++++++++++

* First release on PyPI.


