Metadata-Version: 2.4
Name: jack_wong_library
Version: 1.0.0
Summary: A simple Python utility library for mathematical and string operations
Home-page: https://github.com/yourusername/my_library
Author: Your Name
Author-email: your.email@example.com
Keywords: math string utilities calculator
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-python
Dynamic: summary

# My Library

A simple example Python library that provides basic mathematical and string utilities.

## Installation

```bash
pip install my_library
```

## Usage

```python
from my_library import Calculator, StringUtils, fibonacci, factorial

# Calculator usage
calc = Calculator()
print(calc.add(5, 3))  # Output: 8
print(calc.multiply(4, 7))  # Output: 28

# String utilities
utils = StringUtils()
print(utils.reverse("hello"))  # Output: "olleh"
print(utils.is_palindrome("racecar"))  # Output: True

# Math functions
print(fibonacci(5))  # Output: [0, 1, 1, 2, 3]
print(factorial(5))  # Output: 120
```

## Features

- **Calculator**: Basic arithmetic operations
- **StringUtils**: String manipulation utilities
- **Math Functions**: Fibonacci sequence and factorial calculations
- **Error Handling**: Proper error handling for edge cases

## Development

To build and install locally:

```bash
python setup.py sdist bdist_wheel
pip install -e .
```

## License

MIT License
