Metadata-Version: 2.4
Name: sam4344968-lib
Version: 0.1.0
Summary: A simple Python utility library
Author-email: Sam4344968 <your@email.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# my_library

A simple Python utility library with string and math helpers.

## Installation

```bash
pip install my-unique-library-name
```

## Usage

```python
from my_library import hello, add, reverse_string, is_palindrome

print(hello("Alice"))            # Hello, Alice!
print(add(2, 3))                 # 5
print(reverse_string("hello"))   # olleh
print(is_palindrome("racecar"))  # True
```

## Functions

| Function | Description |
|---|---|
| `hello(name)` | Returns a greeting string |
| `add(a, b)` | Adds two numbers |
| `reverse_string(text)` | Reverses a string |
| `is_palindrome(text)` | Checks if a string is a palindrome |

## License

MIT License
