Metadata-Version: 2.1
Name: pyams-auth-oauth
Version: 1.1.3
Summary: PyAMS security plug-in for OAuth authentication
Home-page: https://pyams.readthedocs.io
Author: Thierry Florac
Author-email: tflorac@ulthar.net
License: ZPL
Keywords: Pyramid PyAMS
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: setuptools
Requires-Dist: authomatic
Requires-Dist: persistent
Requires-Dist: pyams-form
Requires-Dist: pyams-layer
Requires-Dist: pyams-security
Requires-Dist: pyams-security-views
Requires-Dist: pyams-template
Requires-Dist: pyams-utils
Requires-Dist: pyramid
Requires-Dist: zope.annotation
Requires-Dist: zope.container
Requires-Dist: zope.interface
Requires-Dist: zope.lifecycleevent
Requires-Dist: zope.schema
Requires-Dist: zope.traversing
Provides-Extra: test
Requires-Dist: pyams-site ; extra == 'test'
Requires-Dist: pyams-skin ; extra == 'test'
Requires-Dist: pyams-viewlet ; extra == 'test'
Requires-Dist: pyramid-zcml ; extra == 'test'
Requires-Dist: zope.exceptions ; extra == 'test'

==================================
PyAMS OAuth authentication package
==================================

.. contents::


What is PyAMS?
==============

PyAMS (Pyramid Application Management Suite) is a small suite of packages written for applications
and content management with the Pyramid framework.

**PyAMS** is actually mainly used to manage web sites through content management applications (CMS,
see PyAMS_content package), but many features are generic and can be used inside any kind of web
application.

All PyAMS documentation is available on `ReadTheDocs <https://pyams.readthedocs.io>`_; source code
is available on `Gitlab <https://gitlab.com/pyams>`_ and pushed to `Github
<https://github.com/py-ams>`_. Doctests are available in *doctests* source folder.


What is PyAMS OAuth authentication package?
===========================================

This package is a plug-in for PyAMS security policy; it allows to authenticate application
users via an OAuth or OAuth2 authentication providers.

You have to include this package in your Pyramid configuration to activate this plug-in, but also
to register providers for which you want to allow access from.


Changelog
=========

1.1.3
-----
 - updated JSON response in provider add form renderer

1.1.2
-----
 - updated support for new "find_principals" exact match API

1.1.1
-----
 - updated package description for Pypi upload...

1.1.0
-----
 - added OAuth plugin configuration interface
 - added registered OAuth providers to login view
 - updated plugin configuration

1.0.0
-----
 - initial release


