Metadata-Version: 2.4
Name: linear-algebra-helper
Version: 0.1.0
Summary: Interactive linear algebra helper for matrices and vectors.
License: MIT License
        
        Copyright (c) 2026 Linear Algebra Helper contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/your-username/linear-algebra-helper
Project-URL: Issues, https://github.com/your-username/linear-algebra-helper/issues
Keywords: linear-algebra,matrices,vectors,education,math
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Education
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=13.0
Requires-Dist: pyfiglet>=1.0
Dynamic: license-file

# Linear Algebra Helper

Interactive Python tools for learning and working through common linear algebra operations.

## Features

- Matrix operations: determinant, inverse, rank, REF, RREF, LU decomposition, QR decomposition, matrix multiplication, kernel/image, least squares, and more.
- Vector operations: dot product, cross product, angle between vectors, unit vector, projection, reflection, and rotation.
- Step-by-step terminal output using Rich.

## Installation

```bash
pip install linear-algebra-helper
```

## Usage

Run the interactive helper:

```bash
linear-algebra-helper
```

You can also run it from the source tree:

```bash
python main.py
```

Some computational functions can be imported directly:

```python
from matrix_mult import matrix_mult
from determinant import determinant
```

Or through the package helper:

```python
from linear_algebra_helper import modules

modules.matrix_mult.matrix_mult(matrix_a, matrix_b, show_steps=False)
```

## Build

```bash
python -m pip install --upgrade build twine
python -m build
twine check dist/*
```

## Publish to PyPI

Create a PyPI account, generate an API token, then run:

```bash
twine upload dist/*
```

For a trial publish first, use TestPyPI:

```bash
twine upload --repository testpypi dist/*
```

## License

MIT
