Metadata-Version: 1.1
Name: bratabase-social-auth-backend
Version: 0.1.1
Summary: OAuth2 Backend for Bratabase.com to be used with Django-social-auth
Home-page: https://github.com/bratabase/bratabase-social-auth-backend
Author: Jj
Author-email: contact@bratabase.com
License: BSD
Description: Bratabase social-auth Backend
        =============================
        
        OAuth2 Backend for Bratabase.com to be used with Django-social-auth.
        
            https://github.com/omab/django-social-auth
        
        # Installation
        
        ```
        $ pip install bratabase-social-auth-backend
        ```
        
        To enable, simply add the following to your `settings.py`:
        
        ```
        AUTHENTICATION_BACKENDS = [
            ... your other backends
            'bratabase_social_auth.backends.bratabase.BratabaseBackend',
            'django.contrib.auth.backends.ModelBackend',
        ]
        
        ```
        
        And add a **Connect with Bratabase** button that points to `{% url 'socialauth_begin' 'bratabase' %}`.
        
        
        
        
        
        
        
        History
        -------
        
        0.1.0 (2013-08-11)
        ++++++++++++++++++
        
        * First release on PyPI.
Keywords: bratabase-social-auth-backend
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
