Metadata-Version: 2.1
Name: django-dans-notifications
Version: 1.0
Summary: A Django app to handle notifications.
Home-page: https://www.github.com/dan1229/django_dans_notifications
Author: Daniel Nazarian
Author-email: dnaz@danielnazarian.com
License: BSD-3-Clause  # Example license
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# DJANGO DANS NOTIFICATION

A Django app to handle notifications.

## Models

TODO

NotificationEmail
- send email

NotificationBasic

NotificationPush


## Usage

TODO

NotificationManager


## Quick start

1. Add "polls" to your INSTALLED_APPS setting like this:

```python
INSTALLED_APPS = [
    ...
    'notifications',
]
```

2. Include the polls URLconf in your project urls.py like this::

    path("notifications/", include("notifications.urls")),

3. Run ``python manage.py migrate`` to create the models.

4. Create notifications via the API or Admin portal!



## Packaging

To build run:

```bash
python setup.py sdist
python setup.py bdist_wheel
```

To release run:

```bash
python3 -m twine upload --repository testpypi dist/*
```

This expects you to have the proper credentials in your `$HOME/.pypirc` file
