Metadata-Version: 1.1
Name: djangoshop-stripe
Version: 0.1.2
Summary: Stripe Payment Provider Integration for django-shop
Home-page: https://github.com/jrief/djangoshop-stripe
Author: Jacob Rief
Author-email: jacob.rief@gmail.com
License: MIT License
Description: Stripe Payment Provider Integration for django-shop
        ===================================================
        
        This integrates Stripe for django-shop version 0.3 and above.
        
        Installation
        ------------
        
        In ``settings.py`` of your project
        
        Add ``'shop_stripe'`` to ``INSTALLED_APPS``.
        
        At https:://stripe.com/ create an account and apply for a public/private
        key-pair. Then add these keys:
        
        ::
        
            SHOP_STRIPE = {
                'PUBKEY': 'pk_<public-key-as-delivered-by-Stripe>',
                'APIKEY': 'sk_<api-key-as-delivered-by-Stripe>',
                'PURCHASE_DESCRIPTION': _("Thanks for purchasing at MyShop"),
            }
        
        Add ``'shop_stripe.modifiers.StripePaymentModifier'`` to
        ``SHOP_CART_MODIFIERS``.
        
        Add ``'shop_stripe.payment.OrderWorkflowMixin'`` to
        ``SHOP_ORDER_WORKFLOWS``.
        
        Changes
        -------
        
        0.1.2
        ~~~~~
        
        Adopted for asynchronous payments as available in django-shop-0.9.0rc2
        
        0.1.1
        ~~~~~
        
        Initial working release
        
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
