Metadata-Version: 2.4
Name: genkit-plugin-django
Version: 0.9.0
Summary: Deprecated: This package has been renamed to genkit-django.
License: Apache-2.0
Requires-Python: >=3.10
Requires-Dist: genkit-django==0.9.0
Description-Content-Type: text/markdown

# Deprecated Package: genkit-plugin-django

**IMPORTANT**: This package has been renamed to **[genkit-django](https://pypi.org/project/genkit-django/)**.

### Migration

1. Update your dependencies:
   ```bash
   uv remove genkit-plugin-django
   uv add genkit-django
   ```
2. Update your imports:
   ```python
   # Old
   from genkit.plugins import django

   # New
   import genkit_django
   ```

Importing from `genkit.plugins.django` (including submodules) still works but emits a `DeprecationWarning`.
Please migrate to `genkit_django` when you can.
