Skip to content

Commit

Permalink
Add defualt apps.py module
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Feb 12, 2015
1 parent 73451ce commit 7395abe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions notification/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@


__version__ = pkg_resources.get_distribution("django-notification").version

default_app_config = "notification.apps.AppConfig"
7 changes: 7 additions & 0 deletions notification/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

name = "django-notification"
verbose_name = "Django Notifications"

0 comments on commit 7395abe

Please sign in to comment.