Metadata-Version: 2.4
Name: mathtuples
Version: 0.1.0
Summary: Fast, C-backed tuple operations using AST transformation.
Author: Aritya Arjunan
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
Dynamic: license-file

# mathtuples

High-performance C-backed tuple operations powered by Python AST transformations.

## Installation

```bash
pip install mathtuples
```

## Quick Start

```python
from mathtuples import MathTuple

t = MathTuple(1.0, 2.5, 3.0)
print(t)
```
