Metadata-Version: 2.4
Name: lingo-cli
Version: 0.1.1
Summary: CLI tool for converting text to the NATO phonetic alphabet equivalent
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.13
Project-URL: Issues, https://github.com/siddharth-shringarpure/lingo/issues
Project-URL: Releases, https://github.com/siddharth-shringarpure/lingo/releases
Project-URL: Repository, https://github.com/siddharth-shringarpure/lingo
Description-Content-Type: text/markdown

# lingo

[![CI](https://github.com/siddharth-shringarpure/lingo/actions/workflows/ci.yml/badge.svg)](https://github.com/siddharth-shringarpure/lingo/actions/workflows/ci.yml)

A command-line tool for converting text to NATO phonetic alphabet words.

## Quickstart

```bash
# Install dependencies and create the local environment
uv sync

# Convert text
uv run lingo "hello world"

# Or run interactively
uv run lingo
```

## Install Systemwide

To make the `lingo` command available globally through uv tools, install the published package:

```bash
uv tool install lingo-cli

# Then run it directly
lingo "hello world"
```

To update later:

```bash
uv tool upgrade lingo-cli
```

## What It Does

- Converts letters to NATO phonetic words
- Treats upper and lower case the same
- Prints spaces as blank lines
- Leaves non-letter characters unchanged


## License

See LICENSE file for details.
