Metadata-Version: 2.4
Name: quantum-calibration
Version: 1.0.2
Summary: Quantum Calibration
Author-email: Akel Hashim <ahashim@berkeley.edu>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/akelhashim/qcal/
Project-URL: Repository, https://github.com/akelhashim/qcal/
Project-URL: Bug Tracker, https://github.com/akelhashim/qcal/issues
Project-URL: Source Code, https://github.com/akelhashim/qcal/
Keywords: circuit,gate,quantum,calibration,quantum computing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bqskit>=1.2.1
Requires-Dist: ipython<=8.36.0,>=8.14.0
Requires-Dist: lmfit>=1.3.3
Requires-Dist: matplotlib>=3.7.1
Requires-Dist: networkx>=2.4
Requires-Dist: numpy>=1.24.0
Requires-Dist: pandas>=2.0.2
Requires-Dist: plotly>=5.15.0
Requires-Dist: pygsti>=0.9.14.3
Requires-Dist: pyyaml>=6.0
Requires-Dist: scikit-learn>=1.3.0
Requires-Dist: scipy>=1.10.1
Requires-Dist: seaborn>=0.13.0
Requires-Dist: sympy>=1.12
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx-rtd-theme; extra == "docs"
Requires-Dist: nbsphinx; extra == "docs"
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: coverage; extra == "test"
Dynamic: license-file

# qcal

qcal is software for quantum calibration, characterization, and benchmarking. 

# Installation

Install from PyPI:

```bash
pip install quantum-calibration
```

# Getting started

Here's an example of creating a Bell state preparation circuit in qcal:

```python
import qcal as qc

circuit = qc.Circuit([
  qc.Cycle({qc.H(0)}),
  qc.Cycle({qc.CNOT((0, 1))})
])
circuit.measure()
circuit.draw()
```

# License & Copyright

qcal is licensed under a [BSD license](https://github.com/akelhashim/qcal/blob/main/LICENSE).

***Copyright Notice***

qcal Copyright (c) 2025, The Regents of the University of California,
through Lawrence Berkeley National Laboratory (subject to receipt of
any required approvals from the U.S. Dept. of Energy). All rights reserved.

If you have questions about your rights to use or distribute this software,
please contact Berkeley Lab's Intellectual Property Office at
IPO@lbl.gov.

NOTICE. This Software was developed under funding from the U.S. Department
of Energy and the U.S. Government consequently retains certain rights.  As
such, the U.S. Government has been granted for itself and others acting on
its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the
Software to reproduce, distribute copies to the public, prepare derivative 
works, and perform publicly and display publicly, and to permit others to do so.

# Citation
If using qcal for research, please [cite](https://www.osti.gov/doecode/biblio/169551):
```
@misc{doecode_169551,
title = {qcal v0.0.1},
author = {Hashim, Akel},
abstractNote = {qcal is a software package for calibration, characterization, and benchmarking of quantum gates. It was developed to operate full-stack superconducting quantum systems at the Advanced Quantum Testbed.},
doi = {10.11578/dc.20251106.3},
url = {https://doi.org/10.11578/dc.20251106.3},
howpublished = {[Computer Software] \url{https://doi.org/10.11578/dc.20251106.3}},
year = {2025},
month = {nov}
}
```
