Metadata-Version: 2.1
Name: mmdidpay
Version: 0.1
Summary: A Django app to manage idpay.
Home-page: https://www.mh79.ir/
Author: Mohammad heydari
Author-email: yourname@example.com
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Requires-Dist: Django (>=3.0)

MMD IDPay
=========

mmdidpay is a Django app to create pay link by IDPay and Manage transaction and following up them

Detailed documentation is in the "docs" directory.

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

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

    INSTALLED_APPS = [
        ...
        'mmdidpay',
    ]

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

    path('mmdidpay/', include('mmdidpay.urls')),

3. Run ``python manage.py migrate`` to create the mmdtransaction models.

4. Visit http://127.0.0.1:8000/mmdidpay/ to participate in the mmdidpay.

