Metadata-Version: 1.1
Name: django-appengine-auth
Version: 0.1.3dev
Summary: django-appengine-auth is an extension to django-social-auth with a backend for the Google App Engine OAuth endpoint
Home-page: https://github.com/mback2k/django-appengine-auth
Author: Marc Hoersken
Author-email: info@marc-hoersken.de
License: MIT
Description: Remote Google App Engine OAuth backend for Django
        =================================================
        
        [Django-AppEngine-Auth](https://github.com/mback2k/django-appengine-auth) is an
        extension to [Django-Social-Auth](https://github.com/omab/django-social-auth)
        which adds a OAuth backend for Google App Engine based Google Accounts.
        
        This application makes use of the
        [Google App Engine OAuth Profile endpoint application](https://github.com/mback2k/appengine-oauth-profile)
        which is by default hosted at https://oauth-profile.appspot.com/
        
        Dependencies
        ------------
        - django-social-auth [https://github.com/omab/django-social-auth]
        - oauth2             [https://github.com/simplegeo/python-oauth2]
        
        Installation
        ------------
        Install the latest version from pypi.python.org:
        
            pip install django-appengine-auth
        
        Install the development version by cloning the source from github.com:
        
            pip install git+https://github.com/mback2k/django-appengine-auth.git
        
        Configuration
        -------------
        Add the package to your `INSTALLED_APPS`:
        
            INSTALLED_APPS += (
                'social_auth',
                'appengine_auth',
            )
        
        Add the backend to your `AUTHENTICATION BACKENDS`:
        
            AUTHENTICATION_BACKENDS += (
                'appengine_auth.backends.GoogleAppEngineOAuthBackend',
            )
        
        Additional Settings
        -------------------
        Add some or all of the following settings to your `settings.py`:
        
            # Hostname of the OAuth and Web Service endpoint
            GOOGLE_APPENGINE_OAUTH_SERVER = 'oauth-profile.appspot.com'
        
            # Use static and unique Google App Engine user's user_id as identifier
            # Defaults to False which makes it use the user's email address
            GOOGLE_APPENGINE_OAUTH_USE_UNIQUE_USER_ID = True
        
            # Setup Google OAuth consumer key and secret
            GOOGLE_APPENGINE_CONSUMER_KEY = ''
            GOOGLE_APPENGINE_CONSUMER_SECRET = ''
        
        Please refer to the [Django-Social-Auth](http://django-social-auth.readthedocs.org/)
        documentation for additional information.
        
        License
        -------
        * Released under MIT License
        * Copyright (c) 2012-2014 Marc Hoersken <info@marc-hoersken.de>
        
Platform: UNKNOWN
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
