Metadata-Version: 2.4
Name: mas-cli
Version: 21.6.0
Summary: Python Admin CLI for Maximo Application Suite
Author-email: David Parker <parkerda@uk.ibm.com>
License-Expression: EPL-1.0
Project-URL: Homepage, https://github.com/ibm-mas/cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Communications
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mas-devops>=5.2.0
Requires-Dist: alive-progress
Requires-Dist: halo
Requires-Dist: prompt_toolkit
Requires-Dist: openshift
Requires-Dist: kubernetes==33.1.0
Requires-Dist: tabulate
Requires-Dist: prettytable
Requires-Dist: jsonpath-ng
Provides-Extra: dev
Requires-Dist: basedpyright; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: flake8-docstrings; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

mas.cli
-------------------------------------------------------------------------------
Introduced in 2026, replacing the standalone binary previously built with PyInstaller, `mas-cli` is now compatible with [uv](https://docs.astral.sh/uv/) and is the simplest way run the CLI.

- [Install uv](https://docs.astral.sh/uv/getting-started/installation/)

### Ephemeral Execution
Run the MAS CLI without an install:

```bash
uvx mas-cli --help
```

### Persistent Installation
Install the MAS CLI globally:

```bash
# Install the latest version of mas-cli
uv tool install mas-cli

# The 'mas-cli' command is available in your PATH
mas-cli --help

# Upgrade or uninstall the mas-cli
uv tool upgrade mas-cli
uv tool uninstall mas-cli
```

!!! tip "Choosing a specific version"
    You can use a specific version of mas-cli by with ephemeral execution or installation using `mas-cli@@@CLI_LATEST_VERSION@@`
