Metadata-Version: 2.1
Name: django-courier
Version: 0.6.1
Summary: A notification app for Django
Home-page: https://gitlab.com/alantrick/django-courier
Author: Alan Trick
Author-email: me@alantrick.ca
License: LGPL
Project-URL: Bug Tracker, https://gitlab.com/alantrick/django-courier/issues
Project-URL: Documentation, http://djangocourier.readthedocs.io/en/latest/
Project-URL: Source Code, https://gitlab.com/alantrick/django-courier
Description: ==============
        Django Courier
        ==============
        
        |pipeline-badge| |coverage-badge| |docs-badge| |pypi-badge|
        
        Django courier is a django app that allow you to create and issue
        different types of notifications. Notifications can have different
        kinds of parameters which allow for convenient editing in the admin.
        
        
        Why this exists
        ---------------
        
        TLDR: Because I am lazy and I don't want to spend my evening doing
        a deploy just because marketing wants to update the text in their
        latest spam mail.
        
        In a few more words:
        
        * Editing copy for notifications shouldn't have to be done by programmers.
          This means:
        
          1. The notification templates should be editable in the admin
          2. The information necessary to correctly make a template, whether
             it's a template ID or parameters) should be available in the admin
             page. It shouldn't be necessary to look through source code just to
             make a notification work.
          3. Number 2 is actually a fairly difficult problem.
        
        * People have different ways of interacting with computers, and one
          way of doing notifications (i.e. email) doesn't always make sense.
        
          1. Added to that, sending a text message that's as verbose as an HTML
             email is simply ridiculous. Each medium begets its own kind of
             content.
          2. Since, as we mentioned earlier, content should be manageable
             by non-programmers, the different ways of sending messages should
             be manageable by non-programmers.
        
        
        I want it, stat!
        ----------------
        
        Well, why don't you just head over to `the documentation`_ and we'll
        get yo
        
        First, install via pip (on Windows, replace ``pip3`` with ``pip``)
        
        ::
        
          pip3 install django-courier
        
        Then, edit your ``settings.py``, adding this line to ``INSTALLED_APPS``
        
        ::
        
              'django_courier',
        
        
        .. |pipeline-badge| image:: https://gitlab.com/alantrick/django-courier/badges/master/pipeline.svg
           :target: https://gitlab.com/alantrick/django-courier/
           :alt: Documentation Status
        
        .. |coverage-badge| image:: https://gitlab.com/alantrick/django-courier/badges/master/coverage.svg
           :target: https://gitlab.com/alantrick/django-courier/
           :alt: Documentation Status
        
        .. |docs-badge| image:: https://img.shields.io/readthedocs/djangocourier.svg
           :target: `the documentation`_
           :alt: Documentation Status
        
        .. |pypi-badge| image:: https://img.shields.io/pypi/v/django_courier.svg
           :target: https://pypi.org/project/django-courier/
           :alt: Project on PyPI
        
        .. _the documentation: http://djangocourier.readthedocs.io/en/latest/?badge=latest
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Topic :: Utilities
Provides-Extra: docs
Provides-Extra: test
