Metadata-Version: 1.1
Name: django-oscar-paypal
Version: 0.9.1
Summary: Integration with PayPal Express, PayPal Payflow Pro and Adaptive Payments for django-oscar
Home-page: https://github.com/tangentlabs/django-oscar-paypal
Author: David Winterbottom
Author-email: david.winterbottom@tangentlabs.co.uk
License: Copyright (c) 2011, Tangent Communications PLC and individual contributors.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
   
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    3. Neither the name of Tangent Communications PLC nor the names of its contributors 
	   may be used to endorse or promote products derived from this software without
       specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Description: ===============================
        PayPal package for django-oscar
        ===============================
        
        .. image:: https://pypip.in/v/django-oscar-paypal/badge.png
            :target: https://crate.io/packages/django-oscar-paypal/
        
        .. image:: https://pypip.in/d/django-oscar-paypal/badge.png
            :target: https://crate.io/packages/django-oscar-paypal/
        
        This package provides integration between django-oscar_ and both `PayPal
        Express`_ and `PayPal Payflow Pro`_. 
        
        .. _django-oscar: https://github.com/tangentlabs/django-oscar
        .. _`PayPal Express`: https://www.paypal.com/uk/cgi-bin/webscr?cmd=_additional-payment-ref-impl1
        .. _`PayPal Payflow Pro`: https://merchant.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=merchant/payment_gateway
        
        These payment options can be used individually or together.  Further, the
        package is structured so that it can be used without Oscar if you so wish.
        
        * `Full documentation`_
        
        .. _`Full documentation`: http://django-oscar-paypal.readthedocs.org/en/latest/
        .. _`Continuous integration status`: http://travis-ci.org/#!/tangentlabs/django-oscar-paypal?branch=master
        
        License
        -------
        
        The package is released under the `New BSD license`_.
        
        .. _`New BSD license`: https://github.com/tangentlabs/django-oscar-paypal/blob/master/LICENSE
        
        Support
        -------
        
        Having problems or got a question?
        
        * Have a look at the sandbox site as this is a sample Oscar project
          integrated with both PayPal options.  See the `contributing guide`_ within the
          docs for instructions on how to set up the sandbox locally.
        
        * Ping `@django_oscar`_ with quick queries.
        
        * Ask more detailed questions on the Oscar mailing list: `django-oscar@googlegroups.com`_
        
        * Use Github_ for submitting issues and pull requests.
        
        .. _`@django_oscar`: https://twitter.com/django_oscar
        .. _`contributing guide`: http://django-oscar-paypal.readthedocs.org/en/latest/contributing.html
        .. _`django-oscar@googlegroups.com`: https://groups.google.com/forum/?fromgroups#!forum/django-oscar
        .. _`Github`: http://github.com/tangentlabs/django-oscar-paypal
        
        Tests
        -----
        
        .. image:: https://secure.travis-ci.org/tangentlabs/django-oscar-paypal.png
            :alt: Continuous integration status
            :target: http://travis-ci.org/#!/tangentlabs/django-oscar-paypal
        
        .. image:: https://coveralls.io/repos/tangentlabs/django-oscar-paypal/badge.png?branch=master
            :alt: Coverage
            :target: https://coveralls.io/r/tangentlabs/django-oscar-paypal
        
        Changelog
        ---------
        
        0.9.1
        -----
        
        * Add support for Python 3.3 and 3.4
        * Add preliminary support for (unreleased) Oscar 0.8
        
        0.9
        ~~~
        * Support Oscar 0.7 (note that this release only works with 0.7.1 onwards)
        * Drop support for Oscar 0.5
        * Fix bug around unicode handling
        * Allow scheme of callback URL to be specified in a setting
        
        0.8.1
        ~~~~~
        * Ensure sandbox demo site works correctly with Oscar 0.6
        * Fix a bug with Payflow Pro using wrong bankcard attribute for expiry dates.
        * Remove Oscar version verification in ``setup.py``
        * Use content-type ``text/namevalue`` when submitting key-value pairs to
          PayPal.
        
        0.8
        ~~~
        * Support Oscar 0.6
        * Fix bug with offers not being applied to basket on return from PayPal site.
        
        0.7
        ~~~
        * Remove Oscar from ``install_requires``
        
        0.6.1
        ~~~~~
        * Persist shipping method name when using PayPal Express as a payment method
          only. 
        
        0.6
        ~~~
        * Add support for ``NO_SHIPPING`` option with PayPal Express.
        
        0.5
        ~~~
        * Addresses a `security issue`_ where baskets could be manipulated while the
          customer was on the PayPal site.  This would cause the final order to contain
          more items that were paid for.
        
        .. _`security issue`: https://github.com/tangentlabs/django-oscar-paypal/pull/24
        
        0.4.1
        ~~~~~
        * Fixes a bug where the second line of a user's address was not being used to
          create the order shipping address.
        
        0.4
        ~~~
        * We now require Oscar >= 0.5
        * Full i18 support
        * New dashboard views for PayPal Express
        
        0.3.3
        ~~~~~
        * Restrict to Oscar < 0.5
        
        0.3.2
        ~~~~~
        * Pass shipping address name when using Express checkout
        * Docs update
        
        0.3.1
        ~~~~~
        * Fix issue with currency formatting
        * Fix issue with i18n proxies being passed to PayPal
        
        0.3
        ~~~
        * Order discounts are now passed correctly to PayPal as separate lines
        * Fix unicode issue when reading data back from PayPal
        * Use Tox for testsuite
        
        0.2.5
        ~~~~~
        * Fix silly bug with reference transactions
        
        0.2.4
        ~~~~~
        * Fix bug with installing templates
        
        0.2.3
        ~~~~~
        * Fix bug with amount formats not being validated properly
        * Adjust txn model to allow virtually everything to be nullable
        
        0.2.2
        ~~~~~
        * Add support for specifying transaction currency
        
        0.2.1
        ~~~~~
        * Fix packaging issues
        * Remove dead templates
        * With API docs
        
        0.2
        ~~~
        Includes support for Payflow Pro.
        
        0.1
        ~~~
        Includes support for Express Checkout.
        
Keywords: Payment,PayPal,Oscar
Platform: linux
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Other/Nonlisted Topic
