Metadata-Version: 2.4
Name: fast-mathutils
Version: 0.1.0
Summary: Simple self-contained math utilities (factorial, Fibonacci, gcd, lcm, primes).
Author-email: Natee Junrungsee <33nateejunrungsee@lannaist.ac.th>
License: MIT
Project-URL: Homepage, https://github.com/SuperHappyCat/pymathutils
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# 📦 pymathutils

A simple, self-contained Python math utilities module.  
Includes factorial, Fibonacci, primes, gcd, and lcm.

## Installation
```
git clone https://github.com/SuperHappycat/pymathutils.git
cd pymathutils
```
## Usage
```
from pymathutils import factorial, fibonacci, is_prime, gcd, lcm

print(factorial(5))   # 120
print(fibonacci(7))   # 13
print(is_prime(29))   # True
print(gcd(12, 18))    # 6
print(lcm(12, 18))    # 36
```
## Testing
⚠️ WARNING!  Testing needs pytest installed. 
```
python3 -m pip install pytest
python3 -m pytest tests      
```

## License
MIT
