Metadata-Version: 2.4
Name: ptetools
Version: 0.1.21
Summary: Python package with various tools. 
Maintainer-email: Pieter Eendebak <pieter.eendebak@gmail.com>
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: numpy>=2.2
Requires-Dist: matplotlib
Requires-Dist: rich
Requires-Dist: qtpy
Requires-Dist: PyQt5
Requires-Dist: qutip
Requires-Dist: lmfit
Requires-Dist: tqdm
Requires-Dist: IPython
Requires-Dist: joblib
Requires-Dist: qiskit>=2.0
Requires-Dist: qiskit-experiments
Requires-Dist: termcolor
Requires-Dist: pandas
Dynamic: license-file

# Misc Python tools

A Python package with various utilities.

## Installation

```bash
pip install ptetools
```

For development use the -e flag when installing from source code.

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


## Development

Build new package
```
#python -m build . --sdist
python -m pip wheel . -w dist --no-deps
twine upload ...
````
Testing
```
pytest --cov=ptetools
```
