Metadata-Version: 2.4
Name: chaosmath
Version: 0.1.0
Summary: Math functions that almost work
Author: EazyFencer
License: MIT License
        
        Copyright (c) 2026 Aarav Udupa
        
        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/prathambhandary/chaosmath
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ChaosMath 

**Math. But Unstable.**


`chaosmath` is a Python module that provides mathematical functions which are
*almost* correct.  
Results may vary depending on randomness, time, and pure bad vibes.

> Deterministic? No  
> Accurate? Maybe  
> Entertaining? Absolutely

---


## Installation

```bash
  pip install chaosmath
```
or
```bash
  git clone https://github.com/prathambhandary/ChaosMath.git
  cd ChaosMath
  pip install .
```

---

## Features

- `random_error()` → excuses when things go wrong (over 2500+ excuses)
- `pi()` → returns π-ish values
- `sqrt(x)` → usually right, sometimes not
- `add(a, b)` → addition with attitude
- `multiply(a, b)` → multiplication with chaos
- CLI support for terminal chaos

---

## Examples

```Python
import chaosmath as cm

print("ChaosMath Example Usage:")
print(f"Random Error Excuse: {cm.random_error()}")
print(f"Approximate Pi: {cm.pi()}")
print(f"Square root of 16: {cm.sqrt(16)}")
print(f"Addition of 2 and 2: {cm.add(2, 2)}")
print(f"Multiplication of 3 and 3: {cm.multiply(3, 3)}")
```

## Disclaimer

This is not a bug.
This is the feature.

If the output is wrong, confusing, or deeply disappointing —
chaosmath is functioning correctly.

Do not use for:
- Exams  
- Production 
- Finance    
- Space travel   
- Anything you care about 

You have been warned.
---
