Metadata-Version: 2.1
Name: anaconda-cloud-cli
Version: 0.1.0
Summary: The Anaconda Cloud CLI
License: BSD-3-Clause
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: anaconda-cli-base
Requires-Dist: anaconda-cloud-auth
Provides-Extra: dev
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: tox; extra == 'dev'
Requires-Dist: types-requests; extra == 'dev'
Provides-Extra: publish
Requires-Dist: build; extra == 'publish'
Requires-Dist: twine; extra == 'publish'
Requires-Dist: wheel; extra == 'publish'
Description-Content-Type: text/markdown

# anaconda-cloud-cli

The base CLI for Anaconda Cloud.
It currently provides the handling of cloud login/logout, and backwards-compatible passthrough of arguments to the core `anaconda-client` CLI.

This CLI is intended to provide identical behavior to `anaconda-client`, except for minor changes to the login/logout flow, to provide a gentle deprecation path.

## Setup for development

Ensure you have `conda` installed.
Then run:
```shell
make setup
```

## Run the unit tests
```shell
make test
```

## Run the unit tests across isolated environments with tox
```shell
make tox
```
