Add payment provider PayPal

This commit is contained in:
Raphael Michel
2015-03-15 17:33:50 +01:00
parent d397c03fde
commit a67e09215b
10 changed files with 372 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix.base.plugins import PluginType
class PaypalApp(AppConfig):
name = 'pretix.plugins.paypal'
verbose_name = _("Stripe")
class PretixPluginMeta:
type = PluginType.PAYMENT
name = _("PayPal")
author = _("the pretix team")
version = '1.0.0'
description = _("This plugin allows you to receive payments via PayPal")
def ready(self):
from . import signals # NOQA
default_app_config = 'pretix.plugins.paypal.PaypalApp'