Metadata-Version: 2.4
Name: hello-greetings
Version: 1.0.0
Summary: A simple command line tool that greets the user
Home-page: https://github.com/AaronOET/halo
Author: Aaron Hsu
Author-email: Aaron Hsu <aaronhsu@mail.ntou.edu.tw>
Maintainer-email: Aaron Hsu <aaronhsu@mail.ntou.edu.tw>
License-Expression: MIT
Project-URL: Homepage, https://github.com/AaronOET/halo
Project-URL: Repository, https://github.com/AaronOET/halo
Project-URL: Issues, https://github.com/AaronOET/halo/issues
Project-URL: Changelog, https://github.com/AaronOET/halo/blob/main/CHANGELOG.md
Keywords: greeting,cli,tool
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Halo

A simple command line tool that greets the user.

## Description

Halo is a lightweight CLI tool that provides interactive greetings. It can accept names as command line arguments or prompt for input interactively.

## Installation

```bash
pip install halo
```

## Usage

### Command Line Arguments

```bash
# Greet a specific name
halo World

# Interactive mode (prompts for input)
halo

# Show version
halo --version

# Show help
halo --help
```

### Examples

```bash
$ halo Python
hello Python

$ halo
Enter something: Universe
hello Universe
```

## Features

- Simple command-line interface
- Interactive input mode
- Version information
- Cross-platform compatibility

## Requirements

- Python 3.8+

## Development

### Installation for Development

```bash
# Clone the repository
git clone https://github.com/AaronOET/halo.git
cd halo

# Install in development mode
pip install -e .
```

### Running Tests

```bash
python -m pytest tests/
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Changelog

See [CHANGELOG.md](CHANGELOG.md) for a list of changes and version history.
