Metadata-Version: 2.1
Name: planqk-quantum
Version: 1.8.1
Summary: Python library for the PlanQK Quantum Platform
Home-page: https://github.com/planqk/planqk-quantum
Author: StoneOne AG
Author-email: info@stoneone.de
License: apache-2.0
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: azure-quantum (==0.24.208024)
Requires-Dist: qiskit-ionq (==0.1.4)
Requires-Dist: qiskit-terra (>=0.19.1)
Requires-Dist: requests (==2.*)

# Python library for the PlanQK Platform

[![PyPI version](https://badge.fury.io/py/planqk-quantum.svg)](https://badge.fury.io/py/planqk-quantum)

The `planqk-quantum` library is an SDK for developing quantum circuits using [Qiskit](https://pypi.org/project/qiskit) to be run on quantum devices provided by the [PlanQK Platform](https://docs.platform.planqk.de).

## Getting Started

Check out the following guides on how to get started with PlanQK:

- [PlanQK Quickstart Guide](https://docs.platform.planqk.de/tutorials/tutorial-qiskit.html)
- [Using the `planqk-quantum` SDK](https://docs.platform.planqk.de/docs/getting-started/using-sdk.html)

## Installation

The package is released on PyPI and can be installed via `pip`:

```bash
pip install --upgrade planqk-quantum
```

## Development

To create a new Conda environment, run:

```bash
conda env create -f environment.yml
```

Then, to activate the environment:

```bash
conda activate planqk-quantum
```

To install the package in development mode, run:

```bash
pip install -e .
```
