Metadata-Version: 2.0
Name: django-fever-notifications
Version: 0.1.2
Summary: Generic models for implement message based features
Home-page: https://github.com/Feverup/django-fever-notifications
Author: Diego Navarro Mellen
Author-email: dnmellen@gmail.com
License: BSD
Keywords: django-fever-notifications
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

=============================
django-fever-notifications
=============================

.. image:: https://badge.fury.io/py/django-fever-notifications.png
    :target: https://badge.fury.io/py/django-fever-notifications

.. image:: https://travis-ci.org/Feverup/django-fever-notifications.png?branch=master
    :target: https://travis-ci.org/Feverup/django-fever-notifications

Generic models for implement message based features

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

The full documentation is at https://django-fever-notifications.readthedocs.org.

Quickstart
----------

Install django-fever-notifications::

    pip install django-fever-notifications

Then use it in a project:


.. code-block :: python

    from fevernotifications.models import Notification
    from fevernotifications.shortcuts import create_notification

    # Create a notification
    create_notification(user, title="Hello", message="Hello world!")

    # Query all notifications per user
    Notification.objects.by_target(user)


Features
--------

* TODO

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

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install -r requirements-test.txt
    (myenv) $ python runtests.py

Credits
---------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-pypackage`_

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




History
-------

0.1.0 (2016-05-03)
++++++++++++++++++

* First release on PyPI.


