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

# Deprecated Package: genkit-plugin-flask

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

### Migration

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

   # New
   import genkit_flask
   ```

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