Metadata-Version: 2.1
Name: django-tropipy
Version: 1.0
Summary: Easy to use package for processing payments @ www.tropipay.com
Home-page: https://github.com/LhTBL/django-tropipy
Author: Mario Javier Tamayo Marrero
Author-email: Mario Javier Tamayo Marrero <mario.tamayo@lighthousetech.io>, Roberto Sotolongo Fernández <robertosotolongo01@gmail.com>
License: text: GNU General Public License v3 (GPLv3)
Project-URL: Homepage, https://github.com/LhTBL/django-tropipy/
Project-URL: Issues, https://github.com/LhTBL/django-tropipy/issues
Keywords: django,cuba,tropipay
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE

================
django-tropipy
================

django-tropipy is a Django app to bridge with the www.tropipay.com API and make payments
 in an easy way. Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "tropipy" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "django_tropipy",
    ]

2. Include the tropipy URLconf in your project urls.py like this::

    path("tropipay/", include("django_tropipy.urls")),
