Metadata-Version: 2.1
Name: django-commento-sso
Version: 0.1
Summary: A Django app to receive and process commento.io sso
Home-page: https://github.com/patrickscottbest/django-commento-sso
Author: Patrick Scott Best
Author-email: patrickscottbest@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

===============================
django-commento-sso
===============================

django-commento-sso is a Django app to interact with commento.io single sign on.
It receives commento's redirect, verifies, and sends the user back to commento.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "django-commento-sso" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'django-commento-sso',
    ]

2. Add COMMENTO_SECRET_KEY in 64-character text to your settings.py 

3. Include the URLconf in your project urls.py like this::

    path("sso/", include('django_commento_sso.urls')),


