Metadata-Version: 2.1
Name: kedro-vertexai
Version: 0.8.1
Summary: Kedro plugin with GCP Vertex AI support
Home-page: https://github.com/getindata/kedro-vertexai
License: Apache-2.0
Keywords: kedro-plugin,kedro,mlops,vertexai,googlecloudplatform,machinelearning
Author: Marcin Zabłocki
Author-email: marcin.zablocki@getindata.com
Maintainer: GetInData MLOPS
Maintainer-email: mlops@getindata.com
Requires-Python: >=3.8,<3.11
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Provides-Extra: mlflow
Requires-Dist: cachetools (>=4.1,<5.0)
Requires-Dist: click (>=8.0.4)
Requires-Dist: fsspec (>=2021.4,<=2022.1)
Requires-Dist: gcsfs (>=2021.4,<=2022.1)
Requires-Dist: google-auth (<3)
Requires-Dist: google-cloud-iam (<3)
Requires-Dist: google-cloud-scheduler (>=2.3.2)
Requires-Dist: google-cloud-storage (<3.0.0)
Requires-Dist: grpcio (>=1.44.0,<1.45.0)
Requires-Dist: grpcio-status (>=1.44.0,<1.45.0)
Requires-Dist: kedro (>=0.18.1,<0.19.0)
Requires-Dist: kedro-mlflow (>=0.11.1,<0.12.0) ; extra == "mlflow"
Requires-Dist: kfp (>=1.8.12,<2.0)
Requires-Dist: protobuf (<=3.20.0)
Requires-Dist: pydantic (>=1.9.0,<1.10.0)
Requires-Dist: semver (>=2.10,<3.0)
Requires-Dist: tabulate (>=0.8.7)
Project-URL: Documentation, https://kedro-vertexai.readthedocs.io/
Project-URL: Repository, https://github.com/getindata/kedro-vertexai
Description-Content-Type: text/markdown

# Kedro Vertex AI Plugin

[![Python Version](https://img.shields.io/pypi/pyversions/kedro-vertexai)](https://github.com/getindata/kedro-vertexai)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![SemVer](https://img.shields.io/badge/semver-2.0.0-green)](https://semver.org/)
[![PyPI version](https://badge.fury.io/py/kedro-vertexai.svg)](https://pypi.org/project/kedro-vertexai/)
[![Downloads](https://pepy.tech/badge/kedro-vertexai)](https://pepy.tech/project/kedro-vertexai)

[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=getindata_kedro-vertexai&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=getindata_kedro-vertexai)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=getindata_kedro-vertexai&metric=coverage)](https://sonarcloud.io/summary/new_code?id=getindata_kedro-vertexai)
[![Documentation Status](https://readthedocs.org/projects/kedro-vertexai/badge/?version=latest)](https://kedro-vertexai.readthedocs.io/en/latest/?badge=latest)

## About

The main purpose of this plugin is to enable running kedro pipeline on Google Cloud Platform - Vertex AI Pipelines.
It supports translation from Kedro pipeline DSL to [kfp](https://www.kubeflow.org/docs/pipelines/sdk/sdk-overview/) 
(pipelines SDK) and deployment to Vertex AI service with some convenient commands.

The plugin can be used together with `kedro-docker` to simplify preparation of docker image for pipeline execution.   

## Documentation

For detailed documentation refer to https://kedro-vertexai.readthedocs.io/

## Usage guide 

```
Usage: kedro vertexai [OPTIONS] COMMAND [ARGS]...

  Interact with Google Cloud Platform :: Vertex AI Pipelines

Options:
  -e, --env TEXT  Environment to use.
  -h, --help      Show this message and exit.

Commands:
  compile         Translates Kedro pipeline into JSON file with Kubeflow...
  init            Initializes configuration for the plugin
  list-pipelines  List deployed pipeline definitions
  run-once        Deploy pipeline as a single run within given experiment.
  ui              Open VertexAI Pipelines UI in new browser tab
```

## Configuration file

`kedro init` generates configuration file for the plugin, but users may want to adjust it to match the run environment 
requirements. Check documentation for details - [kedro-vertexai.readthedocs.io](https://kedro-vertexai.readthedocs.io/en/latest/source/02_installation/02_configuration.html)

