Metadata-Version: 2.4
Name: claude-code-llm-router
Version: 1.0.0
Summary: DEPRECATED: Use 'llm-routing' instead. This package provides redirect to the new package.
Project-URL: Repository, https://github.com/ypollak2/llm-router
Project-URL: Documentation, https://github.com/ypollak2/llm-router
Project-URL: Changelog, https://github.com/ypollak2/llm-router/blob/main/CHANGELOG.md
Project-URL: Migration Guide, https://github.com/ypollak2/llm-router#deprecation-notice
Author-email: Yali Pollak <yali@example.com>
License: MIT
Keywords: ai,claude,deprecated,llm,routing
Classifier: Development Status :: 7 - Inactive
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: llm-routing>=7.6.2
Description-Content-Type: text/markdown

# claude-code-llm-router (DEPRECATED)

⚠️ **This package is deprecated and no longer maintained.**

## 🚀 Migration Required

Please upgrade to [`llm-routing`](https://pypi.org/project/llm-routing/) instead:

```bash
pip install --upgrade llm-routing
```

## What Changed?

The package was renamed from `claude-code-llm-router` to `llm-routing` to better reflect its multi-provider scope (not just Claude).

- **Old package**: `claude-code-llm-router` (this one)
- **New package**: `llm-routing` (recommended)
- **API**: Identical — no code changes needed
- **Features**: All features are in the new package

## Migration Steps

1. **Uninstall old package**:
   ```bash
   pip uninstall claude-code-llm-router
   ```

2. **Install new package**:
   ```bash
   pip install llm-routing
   ```

3. **Update imports** (if using direct imports):
   ```python
   # Old (deprecated)
   from claude_code_llm_router import ...

   # New (recommended)
   from llm_routing import ...
   ```

4. **Or simply use the CLI** (recommended):
   ```bash
   llm-router install
   llm-router stats
   ```

## Why This Package Exists

This package serves as a redirect to help existing users discover the new package. It has a dependency on `llm-routing>=7.6.2`, so installing it will automatically pull in the new package.

## Questions?

- **GitHub Issues**: https://github.com/ypollak2/llm-router/issues
- **GitHub Discussions**: https://github.com/ypollak2/llm-router/discussions
- **Full Documentation**: https://github.com/ypollak2/llm-router

---

**Latest version of llm-routing**: [PyPI](https://pypi.org/project/llm-routing/)
