mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-03 19:14:43 +00:00
16 lines
465 B
Python
16 lines
465 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
django-notifications
|
|
~~~~~
|
|
A GitHub notification alike app for Django.
|
|
:copyright: (c) 2015 by django-notifications team.
|
|
:license: BSD, see LICENSE.txt for more details.
|
|
"""
|
|
|
|
# PEP 386-compliant version number: N.N[.N]+[{a|b|c|rc}N[.N]+][.postN][.devN]
|
|
__version__ = '0.8.0'
|
|
|
|
from notifications.signals import notify
|
|
from notifications.urls import urlpatterns
|
|
|
|
urls = (urlpatterns, 'notifications', 'notifications')
|