Metadata-Version: 2.1
Name: django-allauth-cas
Version: 1.0.0
Summary: CAS support for django-allauth.
Home-page: https://github.com/aureplop/django-allauth-cas
Author: Aurélien Delobelle
Author-email: aurelien.delobelle@gmail.com
License: MIT
Keywords: django allauth cas authentication
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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
Classifier: Topic :: Internet :: WWW/HTTP
Provides-Extra: docs
Provides-Extra: tests
License-File: LICENSE

##################
django-allauth-cas
##################

.. image:: https://travis-ci.org/aureplop/django-allauth-cas.svg?branch=master
  :target: https://travis-ci.org/aureplop/django-allauth-cas

.. image:: https://coveralls.io/repos/github/aureplop/django-allauth-cas/badge.svg?branch=master
  :target: https://coveralls.io/github/aureplop/django-allauth-cas?branch=master


CAS support for django-allauth_.

Requirements
  * Django 1.8 → 2.0

Dependencies
  * django-allauth_
  * python-cas_: CAS client library

.. note::

  Tests only target the latest allauth version compatible for each Django version
  supported:

  * Django 1.9 with django-allauth 0.32.0;
  * Django 1.8, 1.10, 1.11, 2.0 with the latest django-allauth.

If you have any problems at use or think docs can be clearer, take a little
time to open an issue and/or a PR would be welcomed ;-)

Acknowledgments
  * This work is strongly inspired by the `OAuth2 support of django-allauth`_.


************
Installation
************

Install the python package ``django-allauth-cas``. For example, using pip:

.. code-block:: bash

  $ pip install django-allauth-cas

Add ``'allauth_cas'`` to ``INSTALLED_APPS``.


.. _django-allauth: https://github.com/pennersr/django-allauth
.. _OAuth2 support of django-allauth: https://github.com/pennersr/django-allauth/tree/master/allauth/socialaccount/providers/oauth2
.. _python-cas: https://github.com/python-cas/python-cas


