Metadata-Version: 1.1
Name: django-sharepoint-auth
Version: 1.1
Summary: Authenticate users using SharePoint.
Home-page: https://bitbucket.org/nextscreenlabs/django-sharepoint-auth
Author: Jason Christa
Author-email: jason@zeitcode.com
License: UNKNOWN
Description: Django SharePoint Auth
        ======================
        
        *Django SharePoint Auth* allows you to authenticate using your SharePoint credentials.
        
        Installation
        ------------
        
        Run `pip install django-sharepoint-auth`
        
        Add the `SharePointBackend` to your `AUTHENTICATION_BACKENDS` setting:
        
        ```python
        AUTHENTICATION_BACKENDS = (
            ...
            'sharepoint_auth.auth.SharePointBackend',
        )
        ```
        
        Add a `SHAREPOINT_URL` setting for your SharePoint URL.
        
        ```python
            SHAREPOINT_URL = 'http://mycompany.sharepoint.com'
        ```
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: Django
Classifier: Programming Language :: Python
