Metadata-Version: 1.1
Name: django-paytm
Version: 0.1
Summary: A simple Django app to conduct payment using Paytm.
Home-page: UNKNOWN
Author: Naresh Chaudhary
Author-email: naresh@quixom.com
License: BSD License
Description: =====
        Django-Paytm
        =====
        
        Django-Paytm is an application for integrate paytm gateway with your django project.
        
        Fork from here: [paytm-django](https://github.com/harishbisht/paytm-django)
        
        Quick start
        -----------
        
        1. Add "paytm" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'paytm',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^paytm/', include('paytm.urls')),
        
        3. Put below variables into your settings file.
            ```
            PAYTM_MERCHANT_KEY=  "<YOUR-PAYTM-MERCHANT-KEY>"
            PAYTM_MERCHANT_ID = "<YOUR-PAYTM-MERCHANT-ID>"
            PAYTM_CALLBACK_URL = "http://localhost:8000/response/"
            ```
        
        4. Run `python manage.py migrate` to create the paytm models.
        
        5. ### Stuff used to make this:
        
         * [PAYTM API DOCUMENTATION](http://paywithpaytm.com/developer/paytm_api_doc/)
         * [SDK DOCUMENTATION](http://paywithpaytm.com/developer/paytm_sdk_doc/)
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
