9a7974a14f
Add a CLI oidc-auth to obtain token through oidc-client and dex from Windows Active Directory for Kubernetes authentication. Story: 2006711 Task: 38919 Change-Id: Id0e505202a926aaaf8f6e1182c8c87738ab61025 Signed-off-by: Teresa Ho <teresa.ho@windriver.com>
14 lines
243 B
Python
14 lines
243 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (c) 2020 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
install_requires=['python2-mechanize'],
|
|
setup_requires=['pbr>=2.0.0'],
|
|
pbr=True
|
|
)
|