Metadata-Version: 1.1
Name: django-plans-payments
Version: 0.5.6
Summary: Integration between django-plans and django-payments.
Home-page: https://github.com/PetrDlouhy/django-plans-payments
Author: Petr Dlouhý
Author-email: petr.dlouhy@email.cz
License: MIT
Description-Content-Type: UNKNOWN
Description: =============================
        Django plans payments
        =============================
        
        .. image:: https://badge.fury.io/py/django-plans-payments.svg
            :target: https://badge.fury.io/py/django-plans-payments
        
        .. image:: https://travis-ci.org/PetrDlouhy/django-plans-payments.svg?branch=master
            :target: https://travis-ci.org/PetrDlouhy/django-plans-payments
        
        .. image:: https://codecov.io/gh/PetrDlouhy/django-plans-payments/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/PetrDlouhy/django-plans-payments
        
        Almost automatic integration between `django-plans <https://github.com/django-getpaid/django-plans>`_ and `django-payments <https://github.com/mirumee/django-payments>`_.
        This will add payment buttons to the order page and automatically confirm the `Order` after the payment.
        
        Documentation
        -------------
        
        The full documentation is at https://django-plans-payments.readthedocs.io.
        
        Quickstart
        ----------
        
        Install and configure ``django-plans`` and ``django-payments`` apps.
        Capture mode is not yet supported, so ``PAYMENT_VARINANTS`` with ``'capture': False`` will not get confirmed.
        
        Install Django plans payments::
        
            pip install django-plans-payments
        
        Add it to your ``INSTALLED_APPS``, before the ``plans``:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'related_admin',
                'plans_payments',
                'plans',
                ...
            )
        
        Add Django ``plans_payments`` to the URL patterns:
        
        .. code-block:: python
        
            urlpatterns = [
                ...
                url(r'^plans-payments', include('plans_payments.urls')),
                ...
            ]
        
        Set ``django-plans`` settings and set model to:
        
        .. code-block:: python
        
           PAYMENT_MODEL = 'plans_payments.Payment'
        
        
        Features
        --------
        
        * TODO
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.2.0 (2018-08-05)
        ++++++++++++++++++
        
        * Payment process without capturing should work
        * Automatic buttons generation
        
        0.1.0 (2018-07-23)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-plans-payments
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
