Metadata-Version: 1.1
Name: django-shibboleth-eds
Version: 0.4
Summary: Django app to embed Shibboleth Embedded Discovery Service into your Django project.
Home-page: https://www.example.com/
Author: Enno Gröper
Author-email: enno.groeper@cms.hu-berlin.de
License: Apache 2.0
Description: # django-shibboleth-eds
        app to embed [shibboleth embedded discovery service (eds)][1] into a django project.
        
        # install
        
        1. Install the app (i.e. by using pip)
        2. add it to `INSTALLED_APPS`:
        
            ```python
            INSTALLED_APPS += (
                'shibboleth_eds',
            )
            ```
            
        3. Add it to `urls.py`:
        
             ```python
            urlpatterns += [
                url(r'^ds/', include('shibboleth_eds.urls', namespace='shibboleth_eds')),
            ]
            ```
            
        4. Run `manage.py collectstatic`.
        
        # configure
        
        Adjust the template `discovery.html` to fit into your project. Modify the settings found in `views.py` according to your needs.
        
        [1]: http://shibboleth.net/products/embedded-discovery-service.html "Shibboleth Embedded Discovery Service"
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
