Metadata-Version: 2.4
Name: anaconda-client
Version: 1.14.0
Summary: Client library and CLI plugin for anaconda.org
Project-URL: source, https://github.com/anaconda/anaconda-client
License: BSD-3-Clause
License-File: LICENSE.md
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Requires-Python: >=3.8
Requires-Dist: anaconda-auth
Requires-Dist: anaconda-cli-base>=0.5.3
Requires-Dist: conda-package-handling>=1.7.3
Requires-Dist: defusedxml>=0.7.1
Requires-Dist: nbformat>=4.4.0
Requires-Dist: platformdirs<5.0,>=3.10.0
Requires-Dist: python-dateutil>=2.6.1
Requires-Dist: pytz>=2021.3
Requires-Dist: pyyaml>=3.12
Requires-Dist: requests-toolbelt>=0.9.1
Requires-Dist: requests>=2.20.0
Requires-Dist: setuptools>=58.0.4
Requires-Dist: tqdm>=4.56.0
Requires-Dist: urllib3>=1.26.4
Provides-Extra: dev
Requires-Dist: anaconda-auth>=0.9.1; extra == 'dev'
Requires-Dist: bandit~=1.8.5; extra == 'dev'
Requires-Dist: build~=1.3.0; extra == 'dev'
Requires-Dist: coverage~=7.10.0; extra == 'dev'
Requires-Dist: freezegun~=1.5.2; extra == 'dev'
Requires-Dist: jinja2~=3.1.2; extra == 'dev'
Requires-Dist: mypy~=1.18.2; extra == 'dev'
Requires-Dist: pytest-cov~=7.0.0; extra == 'dev'
Requires-Dist: pytest-html~=4.1.1; extra == 'dev'
Requires-Dist: pytest-mock~=3.15.1; extra == 'dev'
Requires-Dist: pytest~=8.4.1; extra == 'dev'
Requires-Dist: setuptools~=80.9.0; extra == 'dev'
Requires-Dist: typer<0.10.0; extra == 'dev'
Requires-Dist: types-python-dateutil~=2.9.0.20250516; extra == 'dev'
Requires-Dist: types-pytz~=2025.2.0.20250516; extra == 'dev'
Requires-Dist: types-pyyaml~=6.0.12.9; extra == 'dev'
Requires-Dist: types-requests~=2.32.4.20250611; extra == 'dev'
Requires-Dist: types-setuptools~=80.9.0.20250529; extra == 'dev'
Requires-Dist: types-tqdm~=4.67.0.20250516; extra == 'dev'
Requires-Dist: typing-extensions~=4.15.0; extra == 'dev'
Provides-Extra: full
Requires-Dist: pillow>=8.2; extra == 'full'
Description-Content-Type: text/markdown

# Anaconda Client

This is a command line client that provides an interface to [anaconda.org](https://anaconda.org/).

## Quickstart:

First, create an account on [anaconda.org](https://anaconda.org/), if you may still don't have one.

Then, install `anaconda-client` into your conda environment:

```bash
conda install anaconda-client
```

Log into your account:

```bash
anaconda login
```

Test your login wit the `whoami` command:

```bash
anaconda whoami
```

For a complete tutorial on building and uploading Conda packages to [anaconda.org](https://anaconda.org) visit the [documentation page](https://docs.anaconda.org/anacondaorg/).

## Local development

Setup conda environment:

```bash
make init
```

Activate development environment:

```bash
conda activate anaconda_client
```

Run anaconda-client commands:

```bash
python -m binstar_client.scripts.cli --version
```
