Metadata-Version: 2.4
Name: aippy-cli
Version: 0.1.1
Summary: AI-powered Python CLI tool
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: python-dotenv

# aippy-cli

AI-powered Python CLI tool.

## Installation

```bash
pip install aippy-cli
```

Or with pipx (recommended for CLI tools):

```bash
pipx install aippy-cli
```

## Development

Install in editable mode:

```bash
pip install -e .
```

## Usage

```bash
# Greet someone
aippy hello --name Roman

# Show APP_ENV value
aippy env
```

## Build & Publish

```bash
# Build distribution packages
pip install build
python -m build

# Upload to PyPI
pip install twine
twine check dist/*
twine upload dist/*
```
