Metadata-Version: 2.1
Name: ragshu
Version: 0.1.0
Summary: A simple math utility library
Author: Raghav
Author-email: raghavshukla2010@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


# My Awesome Library

This is a Python library that provides basic math utility functions.

## Installation

You can install this library using `pip`:

```bash
pip install ragshu
```

## Usage

```python
from ragshu import add

result = add(1, 2)
print(result)  # Output: 3
```
