Metadata-Version: 2.4
Name: matrixfun
Version: 0.1.0
Summary: A humorous matrix multiplication library in Python
Author: Your Name
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# matrixfun 🎉📊

A fun and sassy Python matrix multiplication library that makes linear algebra tolerable (and funny).

## Installation

```bash
pip install matrixfun
```

## Usage

```python
from matrixfun import multiply_matrices

A = [[1, 2], [3, 4]]
B = [[5], [6]]

result = multiply_matrices(A, B)
print(result)
```
