Metadata-Version: 1.0
Name: django-facebook-auth
Version: 3.4.9
Summary: Authorisation app for Facebook API.
Home-page: UNKNOWN
Author: Tomasz Wysocki
Author-email: tomasz@wysocki.info
License: UNKNOWN
Description: django-facebook-auth
        ========================
        
        Installation
        ------------
        
        Package
        _______
        
        django-facebook-auth can be installed as a normal Python package.
        
        Example instalation for pip::
        
            $ pip install django-facebook-auth
        
        
        Configuration
        -------------
        
        settings.py
        ___________
        
        Set USE_TZ = True
        
        Add facebook_auth to INSTALLED_APPS::
        
            INSTALLED_APPS = (
                ...
                'facebook_auth',
                ...
            )
        
        Add authentication backends to AUTHENTICATION_BACKENDS::
        
            AUTHENTICATION_BACKENDS = (
                ...
                'facebook_auth.backends.FacebookBackend',
                'facebook_auth.backends.FacebookJavascriptBackend',
                ...
            )
        
        Add task to celery imports::
        
            CELERY_IMPORTS = (
                "facebook_auth.models",
                ...
            )
        
Platform: UNKNOWN
