You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
570 B

4 years ago
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy
class PluginApp(AppConfig):
name = 'byro_schaffenburg'
4 years ago
verbose_name = 'Schaffenburg e.V. Byro Plugin'
class ByroPluginMeta:
name = ugettext_lazy('Schaffenburg e.V. Byro Plugin')
author = 'Fraxinas'
description = ugettext_lazy('Membership info extensions for Makerspace Schaffenburg')
visible = True
version = '0.0.1'
def ready(self):
from . import signals # NOQA
default_app_config = 'byro_schaffenburg.PluginApp'