mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-29 19:30:22 +00:00
13 lines
372 B
Python
13 lines
372 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__ = '1.1'
|
|
|
|
default_app_config = 'notifications.apps.Config'
|