Metadata-Version: 2.1
Name: AX3-Mercadopago
Version: 0.2.2
Summary: A Django app to add support for Mercadopago payments
Home-page: https://github.com/Axiacore/ax3-mercadopago
Author: Axiacore, 
Author-email: info@axiacore.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: pymercadopago (>=0.3.0)
Requires-Dist: django (>=2.2.0)

# AX3 Mercadopago

AX3 Mercadopago A Django app to add support for Mercadopago payments.

## Installation

AX3 Mercadopago is easy to install from the PyPI package:

    $ pip install ax3-mercadopago

After installing the package, the project settings need to be configured.

Add ``ax3_mercadopago`` to your ``INSTALLED_APPS``::

    INSTALLED_APPS = [
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.messages',
        'django.contrib.staticfiles',

        # ax3_mercadopago app can be in any position in the INSTALLED_APPS list.
        'ax3_mercadopago',
    ]

## Configuration

Add Mercadopago client and secret:

    MERCADOPAGO_CLIENT_ID
    MERCADOPAGO_CLIENT_SECRET


