Metadata-Version: 2.1
Name: pytket-qir
Version: 0.1.5
Summary: Python module for interfacing QIR with the Quantinuum pytket library.
Home-page: https://github.com/CQCL/pytket-qir
License: LICENSE
Author: Roland Guichard
Author-email: roland.guichard@cambridgequantum.com
Requires-Python: >=3.8,<3.11
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: pyqir (>=0.6.2,<0.7.0)
Requires-Dist: pyqir-evaluator (>=0.6.2,<0.7.0)
Requires-Dist: pyqir-generator (>=0.6.2,<0.7.0)
Requires-Dist: pyqir-parser (>=0.6.2,<0.7.0)
Requires-Dist: pytket (>=1.8.1,<2.0.0)
Project-URL: Repository, https://github.com/CQCL/pytket-qir
Description-Content-Type: text/markdown

# pytket-qir

`pytket-qir` is a python package, aimed at interfacing QIR programs with `pytket`.

The source code can be found in the corresponding GitHub repository.

## Installation

`pytket-qir` is tested against Python 3.8, 3.9 and 3.10.

The main requirements are:

- `pytket`
- `pyqir`

Standard local installation using `pip`:

```sh
pip install -U .
```

`pytket-qir` has been packaged using `poetry`:

```sh
poetry install
```

_N.B._: `pytket-qir` is tested against x86_64 platforms since `pyqir` is not available for arm64.

