Metadata-Version: 2.4
Name: captcha-ocr
Version: 0.1.0
Summary: Minimal scaffold for a CAPTCHA OCR package
Author: Your Name
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# captcha-ocr

Minimal Python package scaffold for a CAPTCHA OCR module.

## Install (editable)

pip install -e .

## Usage

```python
from captcha_ocr import extract_text

text = extract_text("path/to/captcha.png")
print(text)
```

## Notes

This is a stub implementation. Wire in real OCR (e.g., with your chosen engine)
inside `extract_text`.
