Metadata-Version: 2.0
Name: social-auth-backend-csh
Version: 0.1
Summary: A Python Social Auth backend for Computer Science House
Home-page: http://pypi.python.org/pypi/social-auth-backend-csh
Author: Steven Mirabito
Author-email: smirabito@csh.rit.edu
License: MIT
Download-URL: https://github.com/ComputerScienceHouse/social-auth-backend-csh/archive/0.1.tar.gz
Keywords: social,auth,oidc,openid,openid connect,csh,computer science house
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: social-core

social-auth-backend-csh
=======================

A `Python Social Auth`_ backend for Computer Science House.

Usage
-----

In your Social Auth configuration, add this module to the list of
backends in your app settings/configuration:

::

    AUTHENTICATION_BACKENDS = (
        ...
        'csh_auth.CSHAuth',
    )

Then add the following to your app settings/configuration, replacing the
values with the client ID and client secret for your application:

::

    SOCIAL_AUTH_CSH_KEY = '<client_id>'
    SOCIAL_AUTH_CSH_SECRET = '<client_secret>'

Need a client ID/secret? Reach out to any RTP via email or in #opcomm on
Slack.

.. _Python Social Auth: http://python-social-auth.readthedocs.io


