Skip to content

Commit

Permalink
updated setup files and so on
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Banduhn committed Dec 31, 2015
1 parent f1741b8 commit 47b4df7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions howl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default_app_config = 'howl.apps.DjangoHowlConfig'
13 changes: 13 additions & 0 deletions howl/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

from .settings import SIGNALS


class DjangoHowlConfig(AppConfig):
name = 'howl'
verbose_name = _('Howl')

def ready(self):
if SIGNALS: # pragma: nocover
__import__(SIGNALS)
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ def read(*parts):
'docs': docs_requires,
'tests': tests_require,
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down

0 comments on commit 47b4df7

Please sign in to comment.