Metadata-Version: 2.1
Name: mathcalcusuit
Version: 0.1.0
Summary: A simple package for basic math operations including prime checking, Fibonacci, GCD, LCM, and factorials
Author: Md. Ismiel Hossen Abir
Author-email: ismielabir1971@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: License

# MathCalcUSuit

**MathCalcUSuit** is a Python package that provides a suite of basic math operations. It includes functions for:

- Checking if a number is prime
- Generating Fibonacci numbers
- Calculating factorials
- Finding the Greatest Common Divisor (GCD) of two numbers
- Finding the Least Common Multiple (LCM) of two numbers
- Checking if a number is a perfect number

## Installation

To install **MathCalcUSuit**, use `pip`:

```bash
pip install mathcalcusuit
```
## Usage

### Prime Checker
```bash
from mathcalcusuit import prime_check

prime_check(7)
```

### Fibonacci Generator
```bash
from mathcalcusuit import generate_fibonacci

generate_fibonacci(10)
```

### Factorial Calculator
```bash
from mathcalcusuit import factorial_calcu

factorial_calcu(5)
```

### GCD Calculator
```bash
from mathcalcusuit import gcd_calcu

gcd_calcu(48, 180)
```

### LCM Calculator
```bash
from mathcalcusuit import lcm_calcu

lcm_calcu(4, 5)
```
