Metadata-Version: 2.1
Name: strangeworks-qaoa
Version: 0.1.0
Summary: Extension to strangeworks sdk to allow user to run qaoa service
Author: SFlann
Author-email: stuart@strangeworks.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: dimod (>=0.12.4,<0.13.0)
Requires-Dist: networkx (>=3.0,<4.0)
Requires-Dist: numpy (==1.23.2)
Requires-Dist: qiskit (>=0.41.0,<0.42.0)
Requires-Dist: strangeworks (>=0.4.0,<0.5.0)
Description-Content-Type: text/markdown

# Strangeworks QAOA SDK Extension

This extension provides access to the Strangeworks QAOA service through the SDK.

## Installation

Install using `poetry`

```
pip install poetry
poetry install
```

## Tests

Test using pytest

```
poetry run pytest tests
```

## 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]
```

## Update packages

Update <package> version

```
poetry update <package>
```

Update all packages

```
poetry update
```

