Metadata-Version: 2.1
Name: quantumflow
Version: 1.2.1
Summary: "Cross compiler for gate based models of quantum computing"
Home-page: https://github.com/gecrooks/quantumflow/
Author: Gavin Crooks
Author-email: gavincrooks@gmail.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Scientific/Engineering
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: ext
Provides-Extra: docs
Provides-Extra: dev
License-File: LICENSE

#  QuantumFlow: A Quantum Algorithms Development Toolkit

A cross-compiler for gate based models of quantum computing

![Build Status](https://github.com/gecrooks/quantumflow-dev/workflows/Build/badge.svg) [![Documentation Status](https://readthedocs.org/projects/quantumflow/badge/?version=latest)](https://quantumflow.readthedocs.io/en/latest/?badge=latest) [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/gecrooks/quantumflow-dev.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/gecrooks/quantumflow-dev/context:python) [![PyPi version](https://img.shields.io/pypi/v/quantumflow?color=brightgreen)](https://pypi.org/project/quantumflow/)


* [Tutorial](https://github.com/gecrooks/quantumflow-dev/tree/master/tutorial)
* [Source Code](https://github.com/gecrooks/quantumflow)
* [Issue Tracker](https://github.com/gecrooks/quantumflow-dev/issues)
* [API Documentation](https://quantumflow.readthedocs.io/)


## Installation

To install the latest stable release:
```
$ pip install quantumflow
```

In addition, install all of the external quantum libraries that QuantumFlow can interact with (such as cirq, qiskit, braket, ect.):
```
$ pip install quantumflow[ext]
```


To install the latest code from github ready for development:
```
$ git clone https://github.com/gecrooks/quantumflow.git
$ cd quantumflow
$ pip install -e .[dev]
```




