Metadata-Version: 1.1
Name: paytm-oauth
Version: 0.1
Summary: Consumer for paytm oauth
Home-page: https://github.com/paytm/django-paytm-oauth
Author: Shrey Agarwal, Taranjeet Singh
Author-email: shrey.agarwal@paytm.com, reachtotj@gmail.com
License: MIT License
Description: ===========
        Paytm Oauth
        ===========
        
        Paytm Oauth is a django based consumer for paytm oauth.
        
        Quick start
        -----------
        
        1. Add "paytmoauth" to your INSTALLED_APPS in settings like this::
        
            ```
            INSTALLED_APPS = (
                ...
                'paytmoauth',
            )
            ```
        
        2. Update your context_processors to include one provided by `paytmoauth` like
        
            ```
                TEMPLATES = [
                    ...
                    'OPTIONS': {
                        'context_processors': [
                            ...
                            'paytmoauth.context_processors.login_url',
                        ]
                    }
                ]
            ```
        
        3. Define the following variables in your settings
        
            ```
                PAYTMOAUTH_PROVIDER_URL
                PAYTMOAUTH_AUTHORIZATION_ENDPOINT
                PAYTMOAUTH_AUTHENTICATION_ENDPOINT
                PAYTMOUATH_RESOURCE_ACCESS_ENDPOINT
                PAYTMOAUTH_CLIENT_ID
                PAYTMOAUTH_CLIENT_SECRET
                PAYTMOAUTH_SCOPE
                PAYTMOAUTH_REDIRECT_URL
            ```
        
        4. Include urls in root urls like this::
        
            ```
            url(r'^oauth/', include('paytmoauth.urls')),
            ```
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.4
Classifier: Framework :: Django :: 1.8
Classifier: Topic :: Internet :: WWW/HTTP
