Metadata-Version: 2.1
Name: strangeworks-azure
Version: 0.1.3
Summary: 
Author: SFlann
Author-email: stuart@strangeworks.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: azure-quantum (>=2.1.1,<3.0.0)
Requires-Dist: qiskit (>=1.1.0,<2.0.0)
Requires-Dist: strangeworks (>=0.5.12,<0.6.0)
Description-Content-Type: text/markdown

![Tests](https://github.com/strangeworks/strangeworks-azure/actions/workflows/cron_test.yml/badge.svg)

# Strangeworks Azure Extension

Strangeworks Python SDK extension for Azure.

For more information on using the SDK check out the
[Strangeworks documentation](https://docs.strangeworks.com/).

## Dev Installation

Install using `poetry`. The `poetry install` manages all the dependencies and
dev-dependencies. The `pip install` is a workaround because poetry has a hard time with
the submodule install.

```
poetry install
poetry run pip install .
```

## Tests

Test using pytest

```
poetry run pytest tests/test_serialize.py
```

## Lint

Lint with black

```
poetry run black .
```

## Bump version

Bump version with [poetry](https://python-poetry.org/docs/cli/#version).

```
poetry version [patch, minor, major]
```

