Metadata-Version: 2.4
Name: example-package
Version: 0.1.0
Summary: A simple Python package for testing private pip repositories
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/example-package
Project-URL: Repository, https://github.com/yourusername/example-package
Project-URL: Issues, https://github.com/yourusername/example-package/issues
Keywords: example,test,package,pip
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=22.0; extra == "dev"
Requires-Dist: flake8>=5.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# Example Package

A simple Python package for testing private pip repositories.

## Features

- **Calculator**: Basic mathematical operations (add, subtract, multiply, divide)
- **TextProcessor**: Text utilities (clean, count words, reverse, extract numbers, title case)

## Installation

```bash
pip install example-package
```

## Usage

### Calculator

```python
from example_package import Calculator

calc = Calculator()
result = calc.add(5, 3)  # 8
result = calc.multiply(4, 6)  # 24
print(calc.get_history())
```

### TextProcessor

```python
from example_package import TextProcessor

processor = TextProcessor()
text = "  Hello   World 123  "
cleaned = processor.clean_text(text)  # "Hello World 123"
word_count = processor.count_words(cleaned)  # 3
numbers = processor.extract_numbers(text)  # ["123"]
```

## Development

### Setup

```bash
git clone <repository-url>
cd example-package
pip install -e ".[dev]"
```

### Running Tests

```bash
pytest
```

### Code Formatting

```bash
black src/ tests/
```

## License

MIT License
