Metadata-Version: 2.4
Name: hello24
Version: 0.1.1
Summary: Simple command line program
Project-URL: Homepage, https://github.com/nhyy244/simple-cmd-program
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: art
Dynamic: license-file

# Greeting CLI program

Simple greeting CLI program made to learn more about CLI's. 

## Setup
Install with pip/pipx:
```bash
pip install hello24
pipx install hello24
```

## Usage

```bash
hello [OPTIONS] [NAME...]
```

| Option | Description |
|--------|-------------|
| `-h, --help` | Show help and exit |
| `-a, --ascii` | Render greeting as ASCII art |
| `-c, --color COLOR` | Colorize the output |

**Examples**

```bash
python hello world
python hello -a world
python hello -c red world
python hello -a -c red world
```
