Metadata-Version: 2.1
Name: apex_matrix
Version: 1.1.0
Summary: A simple matrix class that handles basic matrix operations
Author-email: Byron Farrell <byronfarrell22@gmail.com>
Project-URL: Homepage, https://github.com/Byron-Farrell/Matrix
Project-URL: Issues, https://github.com/Byron-Farrell/Matrix/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Matrix

### Generate distribution archive
```bash
python3 -m pip install --upgrade build
```
```bash
python3 -m build
```

### Upload the distribution archive
```bash
python3 -m pip install --upgrade twine
```
```bash
python3 -m twine upload dist/*
```

### Install
```bash
pip install apex_matrix
```

### Tests
```bash
python3 -m unittest discover -s tests
```


### Usage
```python
from apex_matrix.Matrix import Matrix

# Create matrix object
my_matrix = Matrix([1,2,3],[4,5,6])

# View docs
help(Matrix)
```
