Metadata-Version: 1.1
Name: django-admin-sso
Version: 0.1.0
Summary: django sso solution
Home-page: http://github.com/frog32/django-admin-sso/
Author: Marc Egli
Author-email: egli@allink.ch
License: BSD License
Description: ================
        Django admin SSO
        ================
        Django admin SSO lets users login to a django admin using an openid provider. It
        then looks up the email address of the new user and looks up the rights for him.
        
        Installation
        ------------
        
        1. Make sure you have a working django project setup.
        2. Install django-admin-sso using pip::
        
            pip install django-admin-sso
        
        3. Install dependencies:
        
            * python-openid>=2.2.5
        
        3. Add `admin_sso` to installed apps in your `settings.py` file
        4. Add the django-admin authentication backend::
        
            AUTHENTICATION_BACKENDS = (
                'admin_sso.auth.DjangoSSOAuthBackend',
                'django.contrib.auth.backends.ModelBackend',
            )
        
        5. Run syncdb to create the needed database tables.
        
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires: Django(>=1.3)
Requires: python_openid(>=2.2.5)
