Metadata-Version: 2.4
Name: invenio-oauthclient
Version: 8.0.1
Summary: Invenio module that provides OAuth web authorization support.
Project-URL: Repository, https://github.com/inveniosoftware/invenio-oauthclient
Author-email: CERN <info@inveniosoftware.org>
License-Expression: MIT
License-File: AUTHORS.rst
License-File: LICENSE
Keywords: authentication,invenio,oauth
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.9
Requires-Dist: blinker>=1.4
Requires-Dist: flask-oauthlib-invenio<3.0.0,>=2.0.0
Requires-Dist: github3-py>=1.0.0a4
Requires-Dist: invenio-accounts<9.0.0,>=8.0.0
Requires-Dist: invenio-base<3.0.0,>=2.0.0
Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
Requires-Dist: invenio-mail<3.0.0,>=1.0.2
Requires-Dist: invenio-theme<5.0.0,>=4.0.0
Requires-Dist: markupsafe>=2.1.5
Requires-Dist: oauthlib>=1.1.2
Requires-Dist: requests-oauthlib>=0.6.2
Requires-Dist: uritemplate>=3.0.1
Requires-Dist: uritools>=1.0.1
Provides-Extra: admin
Requires-Dist: invenio-accounts[admin]<9.0.0,>=8.0.0; extra == 'admin'
Provides-Extra: docs
Provides-Extra: github
Provides-Extra: mysql
Provides-Extra: orcid
Provides-Extra: postgresql
Provides-Extra: sqlite
Provides-Extra: tests
Requires-Dist: flask-admin>=1.6.0; extra == 'tests'
Requires-Dist: httpretty>=0.8.14; extra == 'tests'
Requires-Dist: invenio-db[mysql,postgresql,versioning]<3.0.0,>=2.2.0; extra == 'tests'
Requires-Dist: invenio-userprofiles<7.0.0,>=6.0.0; extra == 'tests'
Requires-Dist: mock>=1.3.0; extra == 'tests'
Requires-Dist: oauthlib>=1.1.2; extra == 'tests'
Requires-Dist: pytest-black>=0.6.0; extra == 'tests'
Requires-Dist: pytest-invenio<5.0.0,>=4.0.0; extra == 'tests'
Requires-Dist: requests-oauthlib>=0.6.2; extra == 'tests'
Requires-Dist: simplejson>=3.8; extra == 'tests'
Requires-Dist: sphinx>=4.5; extra == 'tests'
Description-Content-Type: text/x-rst

..
    SPDX-FileCopyrightText: 2015-2018 CERN.
    SPDX-License-Identifier: MIT

=====================
 Invenio-OAuthClient
=====================

.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-oauthclient.svg
        :target: https://github.com/inveniosoftware/invenio-oauthclient/blob/master/LICENSE

.. image:: https://github.com/inveniosoftware/invenio-oauthclient/workflows/CI/badge.svg
        :target: https://github.com/inveniosoftware/invenio-oauthclient/actions

.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-oauthclient.svg
        :target: https://coveralls.io/r/inveniosoftware/invenio-oauthclient

.. image:: https://img.shields.io/pypi/v/invenio-oauthclient.svg
        :target: https://pypi.org/pypi/invenio-oauthclient


Invenio module that provides OAuth web authorization support.

OAuth client support is typically used to allow features such as social login
(e.g. Sign in with Twitter) and access to resources owned by a specific user
at a remote service. Both OAuth 1.0 and OAuth 2.0 are supported.

Features:

- Views: OAuth login and authorized endpoints, linked account settings and
  sign-up handling.
- Client: A client to interact with remote applications.
- Contrib: Ready-to-use GitHub, ORCID, and CERN remote applications.
- Models: Persistence layer for OAuth access tokens including support for
  storing extra data together with a token.
- Handlers: Customizable handlers for deciding what happens when a user
  authorizes a request.

Further documentation is available on
https://invenio-oauthclient.readthedocs.io/
