Metadata-Version: 2.4
Name: ids-final-project
Version: 0.1.3
Summary: Math and String Utility Package
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# IDS Final Project

A Python utility package with math and string helper functions.  
Created by Tooba & Shifa — UMT Lahore, BS Data Science.

## Installation

pip install ids-final-project

## Usage

```python
from ids_final_project.math_utils import add, subtract, multiply, divide
from ids_final_project.string_utility import reverse_text, count_characters, count_words, capitalize_words

print(add(10, 5))           # 15
print(reverse_text("hello")) # olleh
```

## Functions

### Math Utils
- `add(a, b)` — Addition
- `subtract(a, b)` — Subtraction
- `multiply(a, b)` — Multiplication
- `divide(a, b)` — Division (handles divide by zero)

### String Utility
- `reverse_text(text)` — Reverses a string
- `count_characters(text)` — Returns character count
- `count_words(text)` — Returns word count
- `capitalize_words(text)` — Title cases the text
