diff --git a/notification/__init__.py b/notification/__init__.py index 95c883cd..f5552e60 100644 --- a/notification/__init__.py +++ b/notification/__init__.py @@ -2,3 +2,5 @@ __version__ = pkg_resources.get_distribution("django-notification").version + +default_app_config = "notification.apps.AppConfig" diff --git a/notification/apps.py b/notification/apps.py new file mode 100644 index 00000000..9eb04c30 --- /dev/null +++ b/notification/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig as BaseAppConfig + + +class AppConfig(BaseAppConfig): + + name = "django-notification" + verbose_name = "Django Notifications"