Metadata-Version: 2.1
Name: openvino2onnx
Version: 0.1.3
Summary: openvino2onnx is a tool to convert openvino IR format to ONNX.
Author-email: Wenyi Tang <wenyitang@outlook.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: onnx >= 1.8.1
Requires-Dist: networkx
Requires-Dist: numpy
Requires-Dist: black ; extra == "test"
Requires-Dist: flake8 ; extra == "test"
Requires-Dist: isort ; extra == "test"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: openvino >= 2023.0.0 ; extra == "test"
Project-URL: Home, https://github.com/LoSealL/openvino2onnx
Provides-Extra: test

# OPENVINO2ONNX
A simple tool to convert your IR XML to ONNX file.

Supported OpenVINO IR Version

- IRv10: openvino>=2020,<2023
- IRv11: openvino>=2023

## Usage

1. Install from PyPI
```shell
pip install openvino2onnx
```

2. Convert IR using CLI
```shell
openvino2onnx model.xml
```

