Metadata-Version: 2.4
Name: spicy-cli
Version: 0.1.0
Summary: A Python CLI with multiple commands
Project-URL: homepage, https://spicycentral.org/
Project-URL: repository, https://github.com/darkflib/spicy-cli
Project-URL: documentation, https://darkflib.github.io/spicy-cli/
Project-URL: issue-tracker, https://github.com/darkflib/spicy-cli/issues
Project-URL: source, https://github.com/darkflib/spicy-cli
Project-URL: changelog, https://dev.spicycentral.org/spicy-cli/changelog
Project-URL: pypi, https://pypi.org/spicycentral/spicy-cli/
Author-email: Mike <darkflib@gmail.com>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: httpx>=0.26.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: rich>=13.7.0
Requires-Dist: typer>=0.9.0
Provides-Extra: dev
Requires-Dist: bandit>=1.7.0; extra == 'dev'
Requires-Dist: black>=23.12.0; extra == 'dev'
Requires-Dist: isort>=5.13.0; extra == 'dev'
Requires-Dist: mypy>=1.8.0; extra == 'dev'
Requires-Dist: pre-commit>=3.6.0; extra == 'dev'
Requires-Dist: pylint>=3.0.2; extra == 'dev'
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
Requires-Dist: pytest>=7.4.0; extra == 'dev'
Requires-Dist: ruff>=0.1.8; extra == 'dev'
Requires-Dist: safety>=2.3.0; extra == 'dev'
Requires-Dist: types-setuptools>=69.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# Spicy CLI

A modern Python command-line interface with multiple commands.

[![CI](https://github.com/darkflib/spicy-cli/workflows/CI/badge.svg)](https://github.com/darkflib/spicy-cli/actions/workflows/ci.yml)
[![Code Quality](https://github.com/darkflib/spicy-cli/workflows/Code%20Quality/badge.svg)](https://github.com/darkflib/spicy-cli/actions/workflows/code-quality.yml)
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

## Features

- Multiple commands with subcommands
- Rich terminal output with colors and formatting
- Configuration management
- Detailed help text for all commands
- Type annotations and validation
- Automatic shell completion
- Comprehensive CI/CD with GitHub Actions
- Pre-commit hooks for code quality

## Installation

For regular use, install with pipx:

```bash
pipx install spicy-cli
```

For development:

```bash
git clone https://github.com/darkflib/spicy-cli.git
cd spicy-cli
uv venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv sync
```

Install pre-commit hooks:

```bash
uv run pre-commit install
```

On Windows with Microsoft Store Python, you might encounter issues with pre-commit. Use our helper script:

```bash
.\scripts\fix_precommit_windows.bat
```

See [CONTRIBUTING.md](CONTRIBUTING.md) for more detailed development setup instructions.

## Usage

Show help:

```bash
spicy --help
```

Show version:

```bash
spicy --version
# or
spicy version
```

### Command 1

Run command 1:

```bash
spicy command1 run "Your Name"
spicy command1 run --formal --count 3 "Your Name"
```

Check status:

```bash
spicy command1 status
spicy command1 status --verbose
```

### Command 2

Process files:

```bash
spicy command2 process file1.txt file2.txt
spicy command2 process --output result.txt --force file1.txt file2.txt file3.invalid
```

List items:

```bash
spicy command2 list
spicy command2 list --limit 5 --all
```

### Configuration

Show current configuration:

```bash
spicy config show
```

Change a setting:

```bash
spicy config set timeout 60
spicy config set debug true
```

Reset to defaults:

```bash
spicy config reset
```

### Plugins

List available plugins:

```bash
spicy plugin list
```

Create a new plugin template:

```bash
spicy plugin create "My Plugin" -o my_plugin.py
```

Install a plugin:

```bash
spicy plugin install my_plugin.py
```

Uninstall a plugin:

```bash
spicy plugin uninstall my-plugin
```

#### Example Plugin: Weather

The project includes an example weather plugin in the `examples` directory:

```bash
# Install the example plugin
spicy plugin install examples/weather_plugin.py

# Get current weather
spicy weather current "London, UK"
spicy weather current "New York" --fahrenheit

# Get forecast
spicy weather forecast "Tokyo" --days 5
```

## Development

### Development Scripts

The project includes convenient scripts for common development tasks:

```bash
# On Unix/Linux/Mac:
./scripts/run.sh lint     # Run all linting tools
./scripts/run.sh format   # Format code with black and isort
./scripts/run.sh test     # Run tests with coverage
./scripts/run.sh clean    # Clean build artifacts
./scripts/run.sh build    # Build the package
./scripts/run.sh install  # Install in development mode
./scripts/run.sh run      # Run the CLI (e.g. './scripts/run.sh run --help')
./scripts/run.sh help     # Show help

# On Windows:
scripts\run.bat lint
scripts\run.bat format
# etc.
```

These scripts automatically create and use a virtual environment with uv.

### Testing

Run tests with pytest:

```bash
pytest
```

Run tests with coverage:

```bash
pytest --cov=spicy_cli
```

### Formatting and Type Checking

Format code with black:

```bash
black .
```

Sort imports:

```bash
isort .
```

Type check with mypy:

```bash
mypy .
```

Lint with ruff:

```bash
ruff check .
```

Lint with pylint (with 120 char line length):

```bash
pylint src/ tests/
```

## Development

### Quick Start

```bash
# Clone the repository
git clone https://github.com/darkflib/spicy-cli.git
cd spicy-cli

# Set up development environment
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install -e ".[dev]"

# Install pre-commit hooks
make pre-commit-install
```

### Available Make Commands

This project includes a Makefile with common development tasks:

```bash
make help              # Show all available commands
make dev               # Install development dependencies
make test              # Run tests
make test-all          # Run tests with full coverage reports
make lint              # Run all linting tools
make format            # Format code with black and isort
make type-check        # Run mypy type checking
make security          # Run security checks (safety, bandit)
make ci                # Run all CI checks locally
make clean             # Clean build artifacts
make build             # Build the package
make pre-commit        # Run pre-commit on all files
```

#### Windows Alternative

On Windows, you can use the provided batch script instead of make:

```cmd
dev.bat help           # Show all available commands
dev.bat dev            # Install development dependencies
dev.bat test           # Run tests
dev.bat lint           # Run all linting tools
dev.bat ci             # Run all CI checks locally
```

### CI/CD

This project uses GitHub Actions for continuous integration and deployment:

- **CI Workflow** (`ci.yml`): Runs tests, linting, and type checking on multiple Python versions and operating systems
- **Release Workflow** (`release.yml`): Automatically publishes to PyPI when a release is created
- **Code Quality Workflow** (`code-quality.yml`): Runs security scans, dependency reviews, and automated dependency updates
- **Documentation Workflow** (`docs.yml`): Builds and deploys documentation (if present)

All workflows use `uv` for fast, reliable dependency management.

### Pre-commit Hooks

Pre-commit hooks are configured to run:
- `black` for code formatting
- `isort` for import sorting
- `ruff` for linting and auto-fixes
- `mypy` for type checking
- `pylint` for additional code quality checks

Install them with:
```bash
make pre-commit-install
```

## Docker

To run Spicy CLI in a Docker container, you can use the provided Dockerfile. This allows you to run the CLI without needing to install Python or its dependencies on your local machine.

### Build and Run

To build and run the Docker container, you can use Docker Compose. The provided `docker-compose.yml` file sets up the environment for you.

Build and run with Docker compose:

```bash
docker-compose up --build
```

Run a specific command:

```bash
docker-compose run spicy-cli command1 run "Docker User"
```

### Build and Run for multiarch support

```bash
docker buildx build --platform linux/amd64,linux/arm64 -t spicy-cli:latest --push .
docker run --rm -it spicy-cli:latest
```

## License

MIT
