Metadata-Version: 2.1
Name: django-pay2
Version: 0.2.0
Summary: Easy payments systems integration for Django
Home-page: https://github.com/la1t/django_pay2
Author: Anatoly Gusev
Author-email: gusevtoliy@gmail.com
License: MIT
Keywords: django_pay2
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: Russian
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: django
Requires-Dist: django-ipware
Requires-Dist: requests

=============================
Django Pay
=============================

.. image:: https://travis-ci.org/la1t/django_pay2.svg?branch=master
    :target: https://travis-ci.org/la1t/django_pay2

Easy payments systems integration for Django

Quickstart
----------

Install Django Pay::

    pip install django_pay2

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'django_pay2',
        ...
    )

Add Django Pay's URL patterns:

.. code-block:: python


    urlpatterns = [
        ...
        url(r'^', include('django_pay2.urls')),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox


Development commands
---------------------

::

    pip install -r requirements_dev.txt




History
-------

0.1.0 (2020-12-02)
++++++++++++++++++

* First release on PyPI.


