Metadata-Version: 2.4
Name: huitzo
Version: 0.2.0
Summary: ⚠️ MOVED — Huitzo CLI is now distributed via the native launcher. See https://docs.huitzo.ai/cli/install
Author-email: "Huitzo Inc." <ernesto@huitzo.ai>
License-Expression: LicenseRef-Proprietary
Classifier: Development Status :: 7 - Inactive
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# ⚠️ Huitzo CLI has moved

**This PyPI package is deprecated.** The Huitzo CLI is now distributed as a compiled binary via the native launcher.

## How to migrate

1. **Uninstall the PyPI version:**
   ```bash
   pip uninstall huitzo
   ```

2. **Install the native launcher:**
   ```bash
   # macOS
   brew install huitzo/tap/huitzo

   # Linux / WSL
   curl -sSf https://install.huitzo.ai | sh

   # Or download from GitHub Releases:
   # https://github.com/Huitzo-Inc/huitzo-launcher/releases
   ```

3. **Run as before:**
   ```bash
   huitzo --version
   huitzo pack dev
   ```

The native launcher automatically manages a Python virtual environment and keeps the CLI updated. No manual pip installs needed.

## Why the change?

- **IP Protection**: CLI source is now compiled (Cython) before distribution
- **Simpler setup**: No more Python version conflicts or dependency issues
- **Auto-updates**: The launcher checks for updates automatically
- **Faster startup**: Native binary bootstraps instantly

## For pack developers

Pack development is unchanged. Packs still depend on `huitzo-sdk` (available on PyPI).
Only the CLI tool distribution has changed.

## Links

- **Documentation**: https://docs.huitzo.ai/cli/install
- **Launcher releases**: https://github.com/Huitzo-Inc/huitzo-launcher/releases
- **SDK (unchanged)**: https://pypi.org/project/huitzo-sdk/
