aboutsummaryrefslogtreecommitdiff
path: root/tagging/apps.py
diff options
context:
space:
mode:
Diffstat (limited to 'tagging/apps.py')
-rw-r--r--tagging/apps.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tagging/apps.py b/tagging/apps.py
new file mode 100644
index 0000000..492318c
--- /dev/null
+++ b/tagging/apps.py
@@ -0,0 +1,14 @@
+"""
+Apps for tagging.
+"""
+from django.apps import AppConfig
+from django.utils.translation import ugettext_lazy as _
+
+
+class TaggingConfig(AppConfig):
+ """
+ Config for Tagging application.
+ """
+ name = 'tagging'
+ label = 'tagging'
+ verbose_name = _('Tagging')