Metadata-Version: 2.1
Name: jinyalan
Version: 1.0.0
Summary: A simple package for matrix operations
Home-page: http://www.example.com
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: check-manifest; extra == "dev"
Provides-Extra: test
Requires-Dist: coverage; extra == "test"

```markdown
# jinyalan

A simple Python package for jinyalan including addition and multiplication.

## Installation

```
sh
pip install jinyalan
```
## Usage

```
python
from jinyalan import add_matrices, multiply_matrices

# Define two matrices with different numbers
matrix1 = [[10, 20], [30, 40]]
matrix2 = [[50, 60], [70, 80]]

# Add matrices
result_add = add_matrices(matrix1, matrix2)
print(result_add)  # Output: [[60, 80], [100, 120]]

# Multiply matrices
result_multiply = multiply_matrices(matrix1, matrix2)
print(result_multiply)  # Output: [[2300, 2800], [2600, 3200]]
