Metadata-Version: 2.1
Name: django-payflow
Version: 2.0.1
Summary: A django app for interaction with the django_payflow api
Home-page: https://github.com/ImaginaryLandscape/django_payflow
License: BSD
Author: Imagescape
Author-email: info@imagescape.com
Requires-Python: >=3.7,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: django (>=3.2,<4.0)
Requires-Dist: requests (>=2.28.0,<3.0.0)
Description-Content-Type: text/markdown

## Settings 

django_payflow accepts a python dictionary for all settings 

The minimum settings needed are shown below:

```
DJANGO_PAYFLOW = {
    'PARTNER': 'partner', #This will most likely be 'PayPal'
    'MERCHANT_LOGIN': 'merchant',
    'USER': 'user', # This will most likely be the same as the MERCHANT_LOGIN setting
    'PASSWORD': 'password',
    'TEST_MODE': True,
}
```

