Metadata-Version: 2.0
Name: lib-exo-messages
Version: 0.1.0
Summary: ExO library to manage Messages
Home-page: https://bitbucket.org/exolever/lib-exo-messages.git
Author: Javier Sujar
Author-email: javier.sujar@exolever.com
License: UNKNOWN
Keywords: lib-exo-messages
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django-appconf (~=1.0.2)
Requires-Dist: django-model-utils (>=2.0)
Requires-Dist: djangorestframework (>=3.6.3)
Requires-Dist: psycopg2 (~=2.7.4)

=============================
exo_messages
=============================

.. image:: https://badge.fury.io/py/lib-exo-messages.svg
    :target: https://badge.fury.io/py/lib-exo-messages

.. image:: https://travis-ci.org/jsujar/lib-exo-messages.svg?branch=master
    :target: https://travis-ci.org/jsujar/lib-exo-messages

.. image:: https://codecov.io/gh/jsujar/lib-exo-messages/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/jsujar/lib-exo-messages

Library to manage Messages

Documentation
-------------

Quickstart
----------

Install exo_messages::

    pip install lib-exo-messages

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'exo_messages.apps.ExoMessagesConfig',
        ...
    )

Add exo_messages's URL patterns:

.. code-block:: python

    from exo_messages import urls as exo_messages_urls


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

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2018-04-16)
++++++++++++++++++

* First release on PyPI.


