-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
14 lines (11 loc) · 1009 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup
setup(long_description="""This package provides Intel's OpenVINO Toolkit installation and easy usage in the Google Colab Notebooks.
The OpenVINO Toolkit allows edge AI application optimization and deployment on Google Colab using Colab Notebooks. It is also possible to choose to download all 5 or individual supported model dependencies directly in the notebook along with the option to start a Visual Studio Code instance and work interactively in a VS Code environment on the web using the Google Colab Container and provided resources to build and test Edge AI applications.
This package also supports some basic configuration of vs code server (i.e. To choose different port, password or mounting the drive options.""",
name='openvino_colab',
version='3.0.0',
description='OpenVINO toolkit package for Google Colab',
packages=['openvino_colab'],
author = 'Muhammad Ali',
author_email = '[email protected]',
zip_safe=False)