Metadata-Version: 2.1
Name: mentpy
Version: 0.1.0a2
Summary: A Python library for simulating MBQC circuits
Home-page: https://github.com/BestQuark/mentpy
Author: Luis Mantilla
Author-email: luismantilla99@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

:warning: **This library is under development.**

# ![MentPy: A Measurement-Based Quantum computing simulator.](./docs/_static/logo.png)

<div align=center>
  <a href="https://pypi.org/project/mentpy"><img src="https://img.shields.io/pypi/v/mentpy"></a>
  <!-- <a href="https://pypi.org/project/mentpy"><img src="https://img.shields.io/pypi/pyversions/mentpy"></a> -->
  <a href="https://pypi.org/project/mentpy"><img src="https://img.shields.io/pypi/wheel/mentpy"></a>
  <a href='https://mentpy.readthedocs.io/en/latest/?badge=latest'>
    <img src='https://readthedocs.org/projects/mentpy/badge/?version=latest' alt='Documentation Status' />
</a>
  <!-- <a href="https://pypistats.org/packages/mentpy"><img src="https://img.shields.io/pypi/dm/mentpy"></a>
  <a href="https://pypi.org/project/mentpy"><img src="https://img.shields.io/pypi/l/mentpy"></a> -->
  <a href="https://twitter.com/mentpy"><img src="https://img.shields.io/twitter/follow/mentpy?label=mentpy&style=flat&logo=twitter"></a>
  <!-- <a href="https://github.com/bestquark/mentpy/actions/workflows/docs.yaml"><img src="https://github.com/bestquark/mentpy/actions/workflows/docs.yaml/badge.svg"></a>
  <a href="https://github.com/bestquark/mentpy/actions/workflows/lint.yaml"><img src="https://github.com/bestquark/mentpy/actions/workflows/lint.yaml/badge.svg"></a>
  <a href="https://github.com/bestquark/mentpy/actions/workflows/build.yaml"><img src="https://github.com/bestquark/mentpy/actions/workflows/build.yaml/badge.svg"></a>
  <a href="https://github.com/bestquark/mentpy/actions/workflows/test.yaml"><img src="https://github.com/bestquark/mentpy/actions/workflows/test.yaml/badge.svg"></a>
  <a href="https://codecov.io/gh/bestquark/mentpy"><img src="https://codecov.io/gh/bestquark/mentpy/branch/master/graph/badge.svg?token=3FJML79ZUK"></a> -->
</div>

The `MentPy` library is an open-source software for simulations of 
measurement-based quantum computing circuits. Currently, this package is under 
development and is not ready for public use.

## Installation

The `MentPy` library can be installed using `pip`:

```bash
pip install git+https://github.com/BestQuark/mentpy.git
```

## Usage

```python
import mentpy as mp

st = mp.templates.grid_cluster(4,2)
ps = mp.PatternSimulator(st)
output = ps(np.random.rand(len(st.outputc)))
```

## Documentation

The documentation for `MentPy` can be found [here](./docs).

## Contributing

We welcome contributions to `MentPy`! Please see our [contributing guidelines](./CONTRIBUTING.md) for more information.

## License

`MentPy` is licensed under the [GNU General Public License v3.0](./LICENSE).



