Metadata-Version: 2.1
Name: secretpackage
Version: 0.2.8
Summary: A secret package with hidden source code
Home-page: https://github.com/guochen2011gc/secretpackage
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# SecretPackage

A demonstration package with compiled source code.

## Installation

```bash
pip install secretpackage
```

## Usage

```python
import secretpackage

# Math utilities
result = secretpackage.add(5, 3)
product = secretpackage.multiply(4, 7)
power = secretpackage.power(2, 8)

# String utilities
reversed_text = secretpackage.reverse_string("hello")
capitalized = secretpackage.capitalize_words("hello world")
no_spaces = secretpackage.remove_spaces("hello world")

# Data utilities
cleaned_list = secretpackage.process_list([3, 1, 4, 1, 5, 9])
max_val, min_val = secretpackage.find_max_min([1, 2, 3, 4, 5])
avg = secretpackage.calculate_average([1, 2, 3, 4, 5])
```

## License

MIT License
