Skip to content

Commit

Permalink
Merge pull request #28 from deployed/add_app_config
Browse files Browse the repository at this point in the history
Add default_app_config
  • Loading branch information
czubik8805 authored Aug 26, 2020
2 parents 6ec0772 + 50b19b7 commit 591dd77
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions emailtemplates/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
default_app_config = 'emailtemplates.apps.EmailtempatesConfig'

VERSION = (0, 8, 0)

# Dynamically calculate the version based on VERSION tuple
Expand Down
8 changes: 8 additions & 0 deletions emailtemplates/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _


class EmailtempatesConfig(AppConfig):
name = 'emailtemplates'
verbose_name = _('E-MAIL TEMPLATES')
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='django-emailtemplates',
version='1.1.4',
version='1.1.5',
packages=find_packages(),
include_package_data=True,
license='MIT License',
Expand Down

0 comments on commit 591dd77

Please sign in to comment.