Metadata-Version: 2.4
Name: aqora
Version: 0.26.0rc2
Requires-Dist: typing-extensions>=4.13.2
Requires-Dist: uv>=0.3.2,<1.0.0
Requires-Dist: fsspec>=2025.3.0 ; extra == 'fsspec'
Requires-Dist: fsspec>=2025.3.0 ; extra == 'pyarrow'
Requires-Dist: pyarrow>=17.0.0 ; extra == 'pyarrow'
Requires-Dist: qio>=0.2.2 ; extra == 'qiskit'
Requires-Dist: qiskit>=2.3.1 ; extra == 'qiskit'
Requires-Dist: build>=1.2.0,<2.0.0 ; extra == 'venv'
Requires-Dist: setuptools>=61.0 ; extra == 'venv'
Requires-Dist: ujson>=5.9.0,<6.0.0 ; extra == 'venv'
Requires-Dist: jupyterlab>=4.2.1,<5.0.0 ; extra == 'venv'
Requires-Dist: ipykernel>=6.29.4,<7.0.0 ; extra == 'venv'
Requires-Dist: nbconvert>=7.16.4,<8.0.0 ; extra == 'venv'
Requires-Dist: nbformat>=5.10.4,<6.0.0 ; extra == 'venv'
Provides-Extra: fsspec
Provides-Extra: pyarrow
Provides-Extra: qiskit
Provides-Extra: venv
Summary: The aqora command line interface
Author-email: "S.A.S Aqora Quantum" <hello@aqora.io>
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://github.com/aqora-io/cli
Project-URL: Repository, https://github.com/aqora-io/cli

# Installation

To install the CLI, we recommend using [uv](https://docs.astral.sh/uv/). Note
that the CLI requires Python 3.10 or greater.

If you don't already have `uv`, follow the [installation
instructions](https://docs.astral.sh/uv/getting-started/installation/). Then
install the CLI as a tool:

```bash
uv tool install aqora
```

This makes the `aqora` command available globally. To upgrade later, run:

```bash
uv tool upgrade aqora
```

## Notes for Windows users

If `uv` gives you a warning that the script is not on your PATH, you can copy the
directory in the warning and add it to your path by [following the instructions
here](https://www.java.com/en/download/help/path.html)

You may also need to install the latest Visual C++ Redistributable Version. You
can find [the latest version here](https://learn.microsoft.com/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version)

# Getting Started

To verify the installation, the following should output helpful information

```bash
aqora help
```

Once the CLI has installed you can login to your account with the following command

```bash
aqora login
```

Browse the competitions on [aqora.io](https://aqora.io) and climb the leaderboards!

# Contributing

We strongly recommend you to install a stable Rust toolchain using [Rustup](https://rustup.rs/), and a
[stable Python](https://www.python.org/downloads/) runtime through official distributions.

Our main branch is called `main`. Please open a pull-request up-to-date to that branch
when you request our feedback.

Please follow [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/), which allows our
project to have beautiful changelogs based on your commit messages. We strongly
encourage you to install [Cocogitto](https://docs.cocogitto.io/):

```bash
$ cargo install cocogitto cargo-edit
$ cog install-hook --all


