Metadata-Version: 2.1
Name: unrun
Version: 0.0.1
Summary: A small example package
Home-page: https://github.com/yourusername/unrun
Author: Your Name
Author-email: your.email@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: PyYAML

# unrun

A simple CLI tool to run commands from a YAML file.

## Installation

```bash
pip install unrun
```

## Usage

Create an `unrun.yaml` file in your project root:

```yaml
hello: echo "Hello, world!"
```

Then run:

```bash
unrun hello
```


