Skip to content

Commit

Permalink
Release version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bobapple committed Jul 5, 2023
1 parent ca97e6a commit b2a0843
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pretix_invoice_net/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from django.apps import AppConfig
from django.utils.translation import gettext_lazy
from . import __version__


class PluginApp(AppConfig):
name = 'pretix_invoice_net'
verbose_name = 'Pretix invoice renderer plugin for NETWAYS'

class PretixPluginMeta:
name = gettext_lazy('Pretix invoice renderer plugin for NETWAYS')
author = 'NETWAYS GmbH'
description = gettext_lazy('Pretix invoice renderer plugin for NETWAYS')
visible = True
version = __version__

def ready(self):
from . import signals # NOQA

0 comments on commit b2a0843

Please sign in to comment.