Metadata-Version: 2.3
Name: momatrix
Version: 0.1.1
Summary: A custom widget for matrix input built with anywidget and marimo.
Keywords: marimo,anywidget,matrix,widget,ui,numpy
Author: Hannes Knoll
Author-email: Hannes Knoll <git@hannesknoll.de>
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Dist: anywidget>=0.9.21
Requires-Dist: marimo>=0.19.4
Requires-Dist: numpy>=2.4.1
Requires-Python: >=3.13
Project-URL: Repository, https://codeberg.org/hannesknoll/momatrix
Project-URL: Issues, https://codeberg.org/hannesknoll/momatrix/issues
Description-Content-Type: text/markdown

# momatrix

A custom marimo widget for matrix input built with `anywidget`.

## Installation

```bash
uv add momatrix
```

## Usage

```python
import marimo as mo
from momatrix import MatrixInput, MatrixDisplay

# Create a matrix input in a marimo notebook
matrix = MatrixInput()
matrix

# Display a matrix in a marimo notebook
MatrixDisplay(matrix.value)
```

More examples can be found at "https://codeberg.org/hannesknoll/momatrix/examples".
