mas-cli 17.3.0__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.
- mas_cli-17.3.0/MANIFEST.in +5 -0
- mas_cli-17.3.0/PKG-INFO +72 -0
- mas_cli-17.3.0/README.rst +34 -0
- mas_cli-17.3.0/pyproject.toml +6 -0
- mas_cli-17.3.0/setup.cfg +4 -0
- mas_cli-17.3.0/setup.py +87 -0
- mas_cli-17.3.0/src/mas/cli/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/install/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/install/app.py +859 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/install/argBuilder.py +175 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/install/argParser.py +510 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/install/params.py +100 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/install/summarizer.py +126 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/upgrade/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/upgrade/app.py +139 -0
- mas_cli-17.3.0/src/mas/cli/aiservice/upgrade/argParser.py +69 -0
- mas_cli-17.3.0/src/mas/cli/cli.py +447 -0
- mas_cli-17.3.0/src/mas/cli/displayMixins.py +132 -0
- mas_cli-17.3.0/src/mas/cli/gencfg.py +113 -0
- mas_cli-17.3.0/src/mas/cli/install/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/install/app.py +1352 -0
- mas_cli-17.3.0/src/mas/cli/install/argBuilder.py +474 -0
- mas_cli-17.3.0/src/mas/cli/install/argParser.py +1213 -0
- mas_cli-17.3.0/src/mas/cli/install/catalogs.py +29 -0
- mas_cli-17.3.0/src/mas/cli/install/params.py +177 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/__init__.py +23 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/additionalConfigs.py +227 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/db2Settings.py +229 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/kafkaSettings.py +103 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/manageSettings.py +281 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/mongodbSettings.py +46 -0
- mas_cli-17.3.0/src/mas/cli/install/settings/turbonomicSettings.py +29 -0
- mas_cli-17.3.0/src/mas/cli/install/summarizer.py +405 -0
- mas_cli-17.3.0/src/mas/cli/templates/facilities-configs.yml.j2 +25 -0
- mas_cli-17.3.0/src/mas/cli/templates/ibm-mas-tekton.yaml +51293 -0
- mas_cli-17.3.0/src/mas/cli/templates/jdbccfg.yml.j2 +52 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml +26 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml +56 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml +21 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml +28 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml +32 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml +12 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml +14 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml +22 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml +40 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml +24 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml +20 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml +18 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml +14 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml +18 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml +48 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml +28 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml +26 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml +40 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml +22 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml +13 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml +46 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml +48 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml +13 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml +14 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml +136 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml +34 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml +10 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml +56 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml +140 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml +45 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml +70 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml +80 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml +24 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml +26 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml +52 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml +106 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml +62 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml +44 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml +42 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml +32 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml +42 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml +126 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml +70 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml +62 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml +106 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml +52 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml +28 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml +18 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml +106 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml +126 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml +25 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml +26 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml +340 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml +76 -0
- mas_cli-17.3.0/src/mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml +16 -0
- mas_cli-17.3.0/src/mas/cli/templates/suite_mongocfg.yml.j2 +55 -0
- mas_cli-17.3.0/src/mas/cli/uninstall/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/uninstall/app.py +192 -0
- mas_cli-17.3.0/src/mas/cli/uninstall/argParser.py +109 -0
- mas_cli-17.3.0/src/mas/cli/update/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/update/app.py +628 -0
- mas_cli-17.3.0/src/mas/cli/update/argParser.py +144 -0
- mas_cli-17.3.0/src/mas/cli/upgrade/__init__.py +11 -0
- mas_cli-17.3.0/src/mas/cli/upgrade/app.py +179 -0
- mas_cli-17.3.0/src/mas/cli/upgrade/argParser.py +68 -0
- mas_cli-17.3.0/src/mas/cli/upgrade/settings/__init__.py +19 -0
- mas_cli-17.3.0/src/mas/cli/validators.py +214 -0
- mas_cli-17.3.0/src/mas-cli +91 -0
- mas_cli-17.3.0/src/mas_cli.egg-info/PKG-INFO +72 -0
- mas_cli-17.3.0/src/mas_cli.egg-info/SOURCES.txt +124 -0
- mas_cli-17.3.0/src/mas_cli.egg-info/dependency_links.txt +1 -0
- mas_cli-17.3.0/src/mas_cli.egg-info/requires.txt +12 -0
- mas_cli-17.3.0/src/mas_cli.egg-info/top_level.txt +1 -0
- mas_cli-17.3.0/test/test_help.py +44 -0
- mas_cli-17.3.0/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-17.3.0/PKG-INFO
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mas-cli
|
|
3
|
+
Version: 17.3.0
|
|
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.12
|
|
15
|
+
Classifier: Topic :: Communications
|
|
16
|
+
Classifier: Topic :: Internet
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Dist: mas-devops>=5.2.0
|
|
19
|
+
Requires-Dist: halo
|
|
20
|
+
Requires-Dist: prompt_toolkit
|
|
21
|
+
Requires-Dist: openshift
|
|
22
|
+
Requires-Dist: kubernetes
|
|
23
|
+
Requires-Dist: tabulate
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: build; extra == "dev"
|
|
26
|
+
Requires-Dist: flake8; extra == "dev"
|
|
27
|
+
Requires-Dist: pytest; extra == "dev"
|
|
28
|
+
Requires-Dist: pyinstaller; extra == "dev"
|
|
29
|
+
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
31
|
+
Dynamic: classifier
|
|
32
|
+
Dynamic: description
|
|
33
|
+
Dynamic: home-page
|
|
34
|
+
Dynamic: license
|
|
35
|
+
Dynamic: provides-extra
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: summary
|
|
38
|
+
|
|
39
|
+
mas.devops
|
|
40
|
+
----------
|
|
41
|
+
|
|
42
|
+
Example
|
|
43
|
+
=======
|
|
44
|
+
|
|
45
|
+
.. code:: python
|
|
46
|
+
|
|
47
|
+
from openshift import dynamic
|
|
48
|
+
from kubernetes import config
|
|
49
|
+
from kubernetes.client import api_client
|
|
50
|
+
|
|
51
|
+
from mas.devops.ocp import createNamespace
|
|
52
|
+
from mas.devops.tekton import installOpenShiftPipelines, updateTektonDefinitions, launchUpgradePipeline
|
|
53
|
+
|
|
54
|
+
instanceId = "mymas"
|
|
55
|
+
pipelinesNamespace = f"mas-{instanceId}-pipelines"
|
|
56
|
+
|
|
57
|
+
# Create an OpenShift client
|
|
58
|
+
dynClient = dynamic.DynamicClient(
|
|
59
|
+
api_client.ApiClient(configuration=config.load_kube_config())
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
# Install OpenShift Pipelines Operator
|
|
63
|
+
success = installOpenShiftPipelines(dynamicClient)
|
|
64
|
+
assert success is True
|
|
65
|
+
|
|
66
|
+
# Create the pipelines namespace and install the MAS tekton definitions
|
|
67
|
+
createNamespace(dynamicClient, pipelinesNamespace)
|
|
68
|
+
updateTektonDefinitions(pipelinesNamespace)
|
|
69
|
+
|
|
70
|
+
# Launch the upgrade pipeline and print the URL to view the pipeline run
|
|
71
|
+
pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId)
|
|
72
|
+
print(pipelineURL)
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
success = installOpenShiftPipelines(dynamicClient)
|
|
26
|
+
assert success is True
|
|
27
|
+
|
|
28
|
+
# Create the pipelines namespace and install the MAS tekton definitions
|
|
29
|
+
createNamespace(dynamicClient, pipelinesNamespace)
|
|
30
|
+
updateTektonDefinitions(pipelinesNamespace)
|
|
31
|
+
|
|
32
|
+
# Launch the upgrade pipeline and print the URL to view the pipeline run
|
|
33
|
+
pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId)
|
|
34
|
+
print(pipelineURL)
|
mas_cli-17.3.0/setup.cfg
ADDED
mas_cli-17.3.0/setup.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
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 >= 5.2.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.12',
|
|
83
|
+
'Topic :: Communications',
|
|
84
|
+
'Topic :: Internet',
|
|
85
|
+
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
86
|
+
]
|
|
87
|
+
)
|
|
@@ -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__ = "17.3.0" # 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
|