Metadata-Version: 2.0
Name: django-esteid
Version: 2.0.0.dev1
Summary: Django-esteid is a package that provides Esteid based authentication for your Django applications.
Home-page: https://github.com/thorgate/django-esteid
Author: Thorgate
Author-email: jyrno@thorgate.eu
License: BSD
Description-Content-Type: UNKNOWN
Keywords: esteid django
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django (<2.1,>=1.8)
Requires-Dist: attrs (>=17.2.0)
Requires-Dist: lxml (<4,>=3.4)
Requires-Dist: zeep (>=2.4.0)

# django-esteid

[![pypi Status](https://badge.fury.io/py/django-esteid.png)](https://badge.fury.io/py/django-esteid)
[![Build Status](https://travis-ci.org/thorgate/django-esteid.svg?branch=master)](https://travis-ci.org/thorgate/django-esteid)

Django-esteid is a package that provides Esteid based authentication for your Django applications.

Quickstart
----------

Install Django esteid:

    pip install django-esteid

Add django-esteid to installed apps:

    INSTALLED_APPS = [
        # ...
        'esteid',
        # ...
    ]

Then use it in a project:

    import esteid


