mas-cli 5.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mas-cli might be problematic. Click here for more details.

Files changed (123) hide show
  1. mas_cli-5.1.4/MANIFEST.in +5 -0
  2. mas_cli-5.1.4/PKG-INFO +73 -0
  3. mas_cli-5.1.4/README.rst +33 -0
  4. mas_cli-5.1.4/pyproject.toml +6 -0
  5. mas_cli-5.1.4/setup.cfg +4 -0
  6. mas_cli-5.1.4/setup.py +89 -0
  7. mas_cli-5.1.4/src/mas/cli/__init__.py +11 -0
  8. mas_cli-5.1.4/src/mas/cli/aiservice/install/__init__.py +11 -0
  9. mas_cli-5.1.4/src/mas/cli/aiservice/install/app.py +894 -0
  10. mas_cli-5.1.4/src/mas/cli/aiservice/install/argBuilder.py +180 -0
  11. mas_cli-5.1.4/src/mas/cli/aiservice/install/argParser.py +507 -0
  12. mas_cli-5.1.4/src/mas/cli/aiservice/install/params.py +100 -0
  13. mas_cli-5.1.4/src/mas/cli/aiservice/install/summarizer.py +134 -0
  14. mas_cli-5.1.4/src/mas/cli/cli.py +432 -0
  15. mas_cli-5.1.4/src/mas/cli/displayMixins.py +132 -0
  16. mas_cli-5.1.4/src/mas/cli/gencfg.py +113 -0
  17. mas_cli-5.1.4/src/mas/cli/install/__init__.py +11 -0
  18. mas_cli-5.1.4/src/mas/cli/install/app.py +1316 -0
  19. mas_cli-5.1.4/src/mas/cli/install/argBuilder.py +465 -0
  20. mas_cli-5.1.4/src/mas/cli/install/argParser.py +1176 -0
  21. mas_cli-5.1.4/src/mas/cli/install/catalogs.py +27 -0
  22. mas_cli-5.1.4/src/mas/cli/install/params.py +172 -0
  23. mas_cli-5.1.4/src/mas/cli/install/settings/__init__.py +23 -0
  24. mas_cli-5.1.4/src/mas/cli/install/settings/additionalConfigs.py +227 -0
  25. mas_cli-5.1.4/src/mas/cli/install/settings/db2Settings.py +252 -0
  26. mas_cli-5.1.4/src/mas/cli/install/settings/kafkaSettings.py +103 -0
  27. mas_cli-5.1.4/src/mas/cli/install/settings/manageSettings.py +273 -0
  28. mas_cli-5.1.4/src/mas/cli/install/settings/mongodbSettings.py +46 -0
  29. mas_cli-5.1.4/src/mas/cli/install/settings/turbonomicSettings.py +29 -0
  30. mas_cli-5.1.4/src/mas/cli/install/summarizer.py +398 -0
  31. mas_cli-5.1.4/src/mas/cli/templates/facilities-configs.yml.j2 +25 -0
  32. mas_cli-5.1.4/src/mas/cli/templates/ibm-mas-tekton.yaml +49772 -0
  33. mas_cli-5.1.4/src/mas/cli/templates/jdbccfg.yml.j2 +52 -0
  34. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml +26 -0
  35. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml +56 -0
  36. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml +21 -0
  37. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml +28 -0
  38. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml +32 -0
  39. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml +12 -0
  40. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml +14 -0
  41. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml +22 -0
  42. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml +40 -0
  43. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml +10 -0
  44. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml +24 -0
  45. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml +20 -0
  46. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml +10 -0
  47. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml +18 -0
  48. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml +14 -0
  49. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml +18 -0
  50. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml +48 -0
  51. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml +28 -0
  52. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml +26 -0
  53. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml +40 -0
  54. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml +22 -0
  55. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml +13 -0
  56. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml +10 -0
  57. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml +10 -0
  58. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml +10 -0
  59. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml +46 -0
  60. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml +48 -0
  61. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml +10 -0
  62. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml +13 -0
  63. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml +14 -0
  64. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml +10 -0
  65. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml +10 -0
  66. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml +136 -0
  67. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml +34 -0
  68. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml +10 -0
  69. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml +56 -0
  70. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml +140 -0
  71. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml +45 -0
  72. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml +70 -0
  73. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml +80 -0
  74. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml +24 -0
  75. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml +26 -0
  76. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml +52 -0
  77. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml +106 -0
  78. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml +16 -0
  79. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml +62 -0
  80. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml +44 -0
  81. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml +16 -0
  82. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml +42 -0
  83. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml +32 -0
  84. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml +42 -0
  85. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml +126 -0
  86. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml +70 -0
  87. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml +62 -0
  88. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml +106 -0
  89. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml +52 -0
  90. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml +28 -0
  91. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml +18 -0
  92. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml +16 -0
  93. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml +16 -0
  94. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml +106 -0
  95. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml +126 -0
  96. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml +16 -0
  97. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml +25 -0
  98. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml +26 -0
  99. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml +16 -0
  100. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml +16 -0
  101. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml +340 -0
  102. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml +76 -0
  103. mas_cli-5.1.4/src/mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml +16 -0
  104. mas_cli-5.1.4/src/mas/cli/templates/suite_mongocfg.yml.j2 +55 -0
  105. mas_cli-5.1.4/src/mas/cli/uninstall/__init__.py +11 -0
  106. mas_cli-5.1.4/src/mas/cli/uninstall/app.py +197 -0
  107. mas_cli-5.1.4/src/mas/cli/uninstall/argParser.py +115 -0
  108. mas_cli-5.1.4/src/mas/cli/update/__init__.py +11 -0
  109. mas_cli-5.1.4/src/mas/cli/update/app.py +673 -0
  110. mas_cli-5.1.4/src/mas/cli/update/argParser.py +156 -0
  111. mas_cli-5.1.4/src/mas/cli/upgrade/__init__.py +11 -0
  112. mas_cli-5.1.4/src/mas/cli/upgrade/app.py +164 -0
  113. mas_cli-5.1.4/src/mas/cli/upgrade/argParser.py +68 -0
  114. mas_cli-5.1.4/src/mas/cli/upgrade/settings/__init__.py +19 -0
  115. mas_cli-5.1.4/src/mas/cli/validators.py +151 -0
  116. mas_cli-5.1.4/src/mas-cli +87 -0
  117. mas_cli-5.1.4/src/mas_cli.egg-info/PKG-INFO +73 -0
  118. mas_cli-5.1.4/src/mas_cli.egg-info/SOURCES.txt +121 -0
  119. mas_cli-5.1.4/src/mas_cli.egg-info/dependency_links.txt +1 -0
  120. mas_cli-5.1.4/src/mas_cli.egg-info/requires.txt +12 -0
  121. mas_cli-5.1.4/src/mas_cli.egg-info/top_level.txt +1 -0
  122. mas_cli-5.1.4/test/test_help.py +44 -0
  123. mas_cli-5.1.4/test/test_install.py +44 -0
@@ -0,0 +1,5 @@
1
+ include src/mas/cli/templates/*.yaml
2
+ include src/mas/cli/templates/*.yml.j2
3
+ include src/mas/cli/templates/pod-templates/best-effort/*.yml
4
+ include src/mas/cli/templates/pod-templates/guaranteed/*.yml
5
+ include src/mas/cli/templates/pod-templates/saas-essentials/*.yml
mas_cli-5.1.4/PKG-INFO ADDED
@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.4
2
+ Name: mas-cli
3
+ Version: 5.1.4
4
+ Summary: Python Admin CLI for Maximo Application Suite
5
+ Home-page: https://github.com/ibm-mas/cli
6
+ Author: David Parker
7
+ Author-email: parkerda@uk.ibm.com
8
+ License: Eclipse Public License - v1.0
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: Microsoft :: Windows
12
+ Classifier: Operating System :: POSIX :: Linux
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Topic :: Communications
18
+ Classifier: Topic :: Internet
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Dist: mas-devops>=2.0.0
21
+ Requires-Dist: halo
22
+ Requires-Dist: prompt_toolkit
23
+ Requires-Dist: openshift
24
+ Requires-Dist: kubernetes
25
+ Requires-Dist: tabulate
26
+ Provides-Extra: dev
27
+ Requires-Dist: build; extra == "dev"
28
+ Requires-Dist: flake8; extra == "dev"
29
+ Requires-Dist: pytest; extra == "dev"
30
+ Requires-Dist: pyinstaller; extra == "dev"
31
+ Dynamic: author
32
+ Dynamic: author-email
33
+ Dynamic: classifier
34
+ Dynamic: description
35
+ Dynamic: home-page
36
+ Dynamic: license
37
+ Dynamic: provides-extra
38
+ Dynamic: requires-dist
39
+ Dynamic: summary
40
+
41
+ mas.devops
42
+ ----------
43
+
44
+ Example
45
+ =======
46
+
47
+ .. code:: python
48
+
49
+ from openshift import dynamic
50
+ from kubernetes import config
51
+ from kubernetes.client import api_client
52
+
53
+ from mas.devops.ocp import createNamespace
54
+ from mas.devops.tekton import installOpenShiftPipelines, updateTektonDefinitions, launchUpgradePipeline
55
+
56
+ instanceId = "mymas"
57
+ pipelinesNamespace = f"mas-{instanceId}-pipelines"
58
+
59
+ # Create an OpenShift client
60
+ dynClient = dynamic.DynamicClient(
61
+ api_client.ApiClient(configuration=config.load_kube_config())
62
+ )
63
+
64
+ # Install OpenShift Pipelines Operator
65
+ installOpenShiftPipelines(dynamicClient)
66
+
67
+ # Create the pipelines namespace and install the MAS tekton definitions
68
+ createNamespace(dynamicClient, pipelinesNamespace)
69
+ updateTektonDefinitions(pipelinesNamespace)
70
+
71
+ # Launch the upgrade pipeline and print the URL to view the pipeline run
72
+ pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId)
73
+ print(pipelineURL)
@@ -0,0 +1,33 @@
1
+ mas.devops
2
+ ----------
3
+
4
+ Example
5
+ =======
6
+
7
+ .. code:: python
8
+
9
+ from openshift import dynamic
10
+ from kubernetes import config
11
+ from kubernetes.client import api_client
12
+
13
+ from mas.devops.ocp import createNamespace
14
+ from mas.devops.tekton import installOpenShiftPipelines, updateTektonDefinitions, launchUpgradePipeline
15
+
16
+ instanceId = "mymas"
17
+ pipelinesNamespace = f"mas-{instanceId}-pipelines"
18
+
19
+ # Create an OpenShift client
20
+ dynClient = dynamic.DynamicClient(
21
+ api_client.ApiClient(configuration=config.load_kube_config())
22
+ )
23
+
24
+ # Install OpenShift Pipelines Operator
25
+ installOpenShiftPipelines(dynamicClient)
26
+
27
+ # Create the pipelines namespace and install the MAS tekton definitions
28
+ createNamespace(dynamicClient, pipelinesNamespace)
29
+ updateTektonDefinitions(pipelinesNamespace)
30
+
31
+ # Launch the upgrade pipeline and print the URL to view the pipeline run
32
+ pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId)
33
+ print(pipelineURL)
@@ -0,0 +1,6 @@
1
+ [build-system]
2
+ requires = [
3
+ "setuptools",
4
+ "pypandoc"
5
+ ]
6
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
mas_cli-5.1.4/setup.py ADDED
@@ -0,0 +1,89 @@
1
+ # *****************************************************************************
2
+ # Copyright (c) 2024 IBM Corporation and other Contributors.
3
+ #
4
+ # All rights reserved. This program and the accompanying materials
5
+ # are made available under the terms of the Eclipse Public License v1.0
6
+ # which accompanies this distribution, and is available at
7
+ # http://www.eclipse.org/legal/epl-v10.html
8
+ # *****************************************************************************
9
+
10
+ from setuptools import setup, find_namespace_packages
11
+ import codecs
12
+ import sys
13
+ import os
14
+ sys.path.insert(0, 'src')
15
+
16
+
17
+ if not os.path.exists('README.rst'):
18
+ import pypandoc
19
+ pypandoc.download_pandoc(targetfolder='~/bin/')
20
+ pypandoc.convert_file('README.md', 'rst', outputfile='README.rst')
21
+
22
+ here = os.path.abspath(os.path.dirname(__file__))
23
+ with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
24
+ long_description = f.read()
25
+
26
+ # Maintain a single source of versioning
27
+ # https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
28
+
29
+
30
+ def read(rel_path):
31
+ here = os.path.abspath(os.path.dirname(__file__))
32
+ with codecs.open(os.path.join(here, rel_path), 'r') as fp:
33
+ return fp.read()
34
+
35
+
36
+ def get_version(rel_path):
37
+ for line in read(rel_path).splitlines():
38
+ if line.startswith('__version__'):
39
+ delim = '"' if '"' in line else "'"
40
+ return line.split(delim)[1]
41
+ else:
42
+ raise RuntimeError("Unable to find version string.")
43
+
44
+
45
+ setup(
46
+ name='mas-cli',
47
+ version=get_version("src/mas/cli/__init__.py"),
48
+ author='David Parker',
49
+ author_email='parkerda@uk.ibm.com',
50
+ package_dir={'': 'src'},
51
+ packages=find_namespace_packages(where='src'),
52
+ include_package_data=True,
53
+ scripts=[
54
+ 'src/mas-cli'
55
+ ],
56
+ url='https://github.com/ibm-mas/cli',
57
+ license='Eclipse Public License - v1.0',
58
+ description='Python Admin CLI for Maximo Application Suite',
59
+ long_description=long_description,
60
+ install_requires=[
61
+ 'mas-devops >= 2.0.0', # EPL
62
+ 'halo', # MIT License
63
+ 'prompt_toolkit', # BSD License
64
+ 'openshift', # Apache Software License
65
+ 'kubernetes', # Apache Software License
66
+ 'tabulate' # MIT License
67
+ ],
68
+ extras_require={
69
+ 'dev': [
70
+ 'build', # MIT License
71
+ 'flake8', # MIT License
72
+ 'pytest', # MIT License
73
+ 'pyinstaller' # GPL, https://pyinstaller.org/en/stable/license.html & https://github.com/pyinstaller/pyinstaller/wiki/FAQ#license
74
+ ]
75
+ },
76
+ classifiers=[
77
+ 'Development Status :: 4 - Beta',
78
+ 'Intended Audience :: Developers',
79
+ 'Operating System :: Microsoft :: Windows',
80
+ 'Operating System :: POSIX :: Linux',
81
+ 'Programming Language :: Python',
82
+ 'Programming Language :: Python :: 3.9',
83
+ 'Programming Language :: Python :: 3.10',
84
+ 'Programming Language :: Python :: 3.11',
85
+ 'Topic :: Communications',
86
+ 'Topic :: Internet',
87
+ 'Topic :: Software Development :: Libraries :: Python Modules'
88
+ ]
89
+ )
@@ -0,0 +1,11 @@
1
+ # *****************************************************************************
2
+ # Copyright (c) 2024 IBM Corporation and other Contributors.
3
+ #
4
+ # All rights reserved. This program and the accompanying materials
5
+ # are made available under the terms of the Eclipse Public License v1.0
6
+ # which accompanies this distribution, and is available at
7
+ # http://www.eclipse.org/legal/epl-v10.html
8
+ #
9
+ # *****************************************************************************
10
+
11
+ __version__ = "5.1.4" # Python module compatible semver
@@ -0,0 +1,11 @@
1
+ # *****************************************************************************
2
+ # Copyright (c) 2024, 2025 IBM Corporation and other Contributors.
3
+ #
4
+ # All rights reserved. This program and the accompanying materials
5
+ # are made available under the terms of the Eclipse Public License v1.0
6
+ # which accompanies this distribution, and is available at
7
+ # http://www.eclipse.org/legal/epl-v10.html
8
+ #
9
+ # *****************************************************************************
10
+
11
+ from ...cli import BaseApp # noqa: F401