Metadata-Version: 2.4
Name: cloudagent-cli
Version: 0.1.4
Summary: Deprecated — use 'cloudagent' instead. This package is a compatibility shim that re-exports cloudagent.
Project-URL: Homepage, https://pypi.org/project/cloudagent/
Author: CloudAgent
License-Expression: MIT
License-File: LICENSE
Keywords: cloudagent,deprecated
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: cloudagent>=0.2.1
Description-Content-Type: text/markdown

# cloudagent-cli (deprecated)

> ⚠ **This package has been renamed to [`cloudagent`](https://pypi.org/project/cloudagent/).**
>
> `cloudagent-cli` is now a thin compatibility shim that depends on `cloudagent`
> and re-exports its modules. It will be **yanked from PyPI in a future release**.

## Migrate

```bash
pip uninstall cloudagent-cli
pip install cloudagent
```

Imports keep working until the shim is yanked, but update them now:

```diff
- from cloudagent_cli import CloudAgentClient
+ from cloudagent import CloudAgentClient

- from cloudagent_cli.client import CloudAgentClient
+ from cloudagent.client import CloudAgentClient
```

The `cloudagent` CLI command is unchanged.

See https://pypi.org/project/cloudagent/ for the active project.
