b3a454c56c
Refactor and add the existing password based plugin that exists in keystoneclient: https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/contrib/auth/v3/oidc.py It's been refactored so that a base class is created with arguments that are common to several openid connect flows. The patch also includes support for a few auth flow called authorization code. Co-Authored-By: Zhao Jian <jianzj@cn.ibm.com> Change-Id: I35db68e288e174617a05c0db3d77d5a86048fe9e
53 lines
1.6 KiB
INI
53 lines
1.6 KiB
INI
[metadata]
|
|
name = keystoneauth1
|
|
summary = Authentication Library for OpenStack Identity
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 2.6
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.4
|
|
|
|
[files]
|
|
packages =
|
|
keystoneauth1
|
|
|
|
[entry_points]
|
|
|
|
keystoneauth1.plugin =
|
|
password = keystoneauth1.loading._plugins.identity.generic:Password
|
|
token = keystoneauth1.loading._plugins.identity.generic:Token
|
|
admin_token = keystoneauth1.loading._plugins.admin_token:AdminToken
|
|
v2password = keystoneauth1.loading._plugins.identity.v2:Password
|
|
v2token = keystoneauth1.loading._plugins.identity.v2:Token
|
|
v3password = keystoneauth1.loading._plugins.identity.v3:Password
|
|
v3token = keystoneauth1.loading._plugins.identity.v3:Token
|
|
v3oidcpassword = keystoneauth1.loading._plugins.identity.v3:OpenIDConnectPassword
|
|
v3oidcauthcode = keystoneauth1.loading._plugins.identity.v3:OpenIDConnectAuthorizationCode
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[pbr]
|
|
warnerrors = True
|
|
autodoc_tree_index_modules = True
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[wheel]
|
|
universal = 1
|