Metadata-Version: 2.1
Name: kedro-onnx
Version: 0.1.2
Summary: Adds ONNX support to Kedro
Home-page: https://pypi.org/project/kedro-onnx/
Author: nickolasrm
Author-email: nickolasrochamachado@gmail.com
License: Apache-2.0
Project-URL: Documentation, https://kedro-onnx.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/nickolasrm/kedro-onnx
Project-URL: Pypi, https://pypi.org/project/kedro-onnx/
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: kedro (>=0.18.2)
Requires-Dist: onnxmltools
Requires-Dist: onnxconverter-common
Requires-Dist: onnxruntime
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: pytest-mock ; extra == 'dev'
Requires-Dist: pytest-tmpfs ; extra == 'dev'
Requires-Dist: sklearn ; extra == 'dev'
Requires-Dist: skl2onnx ; extra == 'dev'
Requires-Dist: numpy ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: sphinx-copybutton ; extra == 'dev'
Requires-Dist: sphinx-autodoc-typehints ; extra == 'dev'
Requires-Dist: furo ; extra == 'dev'
Requires-Dist: sphinxcontrib-napoleon ; extra == 'dev'
Requires-Dist: myst-parser ; extra == 'dev'
Requires-Dist: sphinx-autoapi ; extra == 'dev'
Requires-Dist: yapf ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-copybutton ; extra == 'docs'
Requires-Dist: sphinx-autodoc-typehints ; extra == 'docs'
Requires-Dist: furo ; extra == 'docs'
Requires-Dist: sphinxcontrib-napoleon ; extra == 'docs'
Requires-Dist: myst-parser ; extra == 'docs'
Requires-Dist: sphinx-autoapi ; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pytest-mock ; extra == 'test'
Requires-Dist: pytest-tmpfs ; extra == 'test'
Requires-Dist: sklearn ; extra == 'test'
Requires-Dist: skl2onnx ; extra == 'test'
Requires-Dist: numpy ; extra == 'test'

# Kedro ONNX

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/nickolasrm/kedro-onnx/Build)
![Codecov](https://img.shields.io/codecov/c/gh/nickolasrm/kedro-onnx)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/nickolasrm/kedro-onnx/Release?label=release)
[![Documentation Status](https://readthedocs.org/projects/kedro-onnx/badge/?version=latest)](https://kedro-onnx.readthedocs.io/en/latest/?badge=latest)
![PyPI](https://img.shields.io/pypi/v/kedro-onnx)

## Introduction

Adds ONNX support to Kedro.

## Usage

Read our [docs](https://kedro-onnx.readthedocs.io/en/latest/).

## Getting Started

Execute this command in your terminal:

```bash
pip install kedro-onnx
```

## Contribute

If you want to contribute to this package, execute the following steps:

1. Fork the repo
2. Clone it in your machine
3. Install with `pip install .[dev]`
4. Run `pre-commit install` in the project root
5. Make your changes
6. Create a pr

> Note: Remember to create unit tests and to run pytest and flake8 before creating a pr

## Credits

* Nickolas da Rocha Machado [@nickolasrm](https://github.com/nickolasrm)
