Metadata-Version: 1.1
Name: django-cryptocurrency-payment
Version: 0.1.0
Summary: Simple and flexible pluggable cryptocurrency payment app for django
Home-page: https://github.com/ydaniels/django-cryptocurrency-payment
Author: Yomi Daniel
Author-email: yomid4all@gamil.com
License: MIT
Description: =============================
        Django Cryptocurrency Payment
        =============================
        
        .. image:: https://badge.fury.io/py/django-cryptocurrency-payment.svg
            :target: https://badge.fury.io/py/django-cryptocurrency-payment
        
        .. image:: https://travis-ci.org/ydaniels/django-cryptocurrency-payment.svg?branch=master
            :target: https://travis-ci.org/ydaniels/django-cryptocurrency-payment
        
        .. image:: https://codecov.io/gh/ydaniels/django-cryptocurrency-payment/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/ydaniels/django-cryptocurrency-payment
        
        Simple and flexible pluggable cryptocurrency payment app for django
        
        Documentation
        -------------
        
        The full documentation is at https://django-cryptocurrency-payment.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django Cryptocurrency Payment::
        
            pip install django-cryptocurrency-payment
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'cryptocurrency_payment.apps.CryptocurrencyPaymentConfig',
                ...
            )
        
        Add Django Cryptocurrency Payment's URL patterns:
        
        .. code-block:: python
        
            from cryptocurrency_payment import urls as cryptocurrency_payment_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(cryptocurrency_payment_urls)),
                ...
            ]
        
        Features
        --------
        
        * Flexible payment creation that can be linked to other django object
        * Automatically update payment status from blockchain
        * Auto update payment prices if payment is not paid
        * Auto create child payment if payment is underpaid
        * Cancel unpaid payment after a period of time
        * Allow Anonymous payment
        * Pluggable backend to support more cryptocurrency
        
        
        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.1.0 (2020-03-21)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-cryptocurrency-payment
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.1
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.5
Classifier: Programming Language :: Python :: 3.6
