Metadata-Version: 2.4
Name: easycli-runner
Version: 0.1.0
Summary: Zero-boilerplate CLI generator using function signatures and type hints.
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# easycli-runner

`easycli-runner` is a zero-boilerplate command-line interface (CLI) generator for Python. It uses Python's built-in inspection and type hints to automatically build terminal parsers—completely eliminating the massive setup overhead of `argparse`.

## Features

* **Zero Boilerplate:** No explicit parser creation, flag additions, or manual argument mapping required.
* **Signature-Driven:** Automatically reads your function parameters, default values, and type hints to build terminal flags.
* **Automatic Documentation:** Converts your function's docstrings directly into terminal help menus.
* **Type Safe:** Casts inputs to appropriate types (`int`, `str`, `bool`) seamlessly.

---

## Installation

Install the library via pip:

```bash
pip install easycli-runner
