Metadata-Version: 2.4
Name: rawmath
Version: 0.1.0
Summary: A from-scratch mathematics library for Python.
Author: PeagazinhoAI
License-Expression: MIT
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# RawMath

A from-scratch mathematics library for Python.

RawMath implements mathematical structures and operations directly from their
definitions, with a focus on clarity, independence, and understanding the
mathematics behind the implementation.

## Requirements

- Python 3.10+

## Installation

RawMath is currently under development.

For local development:

    python -m pip install -e .

## Quick Start

    from rawmath import Matrix

    A = Matrix([
        [1, 2],
        [3, 4],
    ])

    B = Matrix([
        [5, 6],
        [7, 8],
    ])

    print(A + B)

## Status

RawMath is currently in pre-alpha development. The API may change between
versions.

## License

RawMath is licensed under the MIT License.
