Files
openvino/tools/benchmark_tool/setup.py
Sergey Lyubimtsev 6e14890972 Align folder structure for Benchmark Tool (#6625)
* openvino namespace for benchmark tool

* change readme wording

* remove duplicated  README.md
2021-07-19 11:57:51 +03:00

43 lines
1.2 KiB
Python

#!/usr/bin/env python3
# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
"""
Use this script to create a wheel with OpenVINO™ Python* tools:
$ python setup.py sdist bdist_wheel
"""
from setuptools import setup, find_packages
with open('openvino/tools/benchmark/README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('openvino/tools/benchmark/requirements.txt') as f:
required = f.read().splitlines()
required.extend(['openvino'])
setup(
name='benchmark_tool',
version='0.0.0',
author='Intel® Corporation',
license='OSI Approved :: Apache Software License',
author_email='openvino_pushbot@intel.com',
url='https://github.com/openvinotoolkit/openvino',
description='OpenVINO™ Python* tools package',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'benchmark_app = openvino.tools.benchmark.main:main'],
},
classifiers=[
'Programming Language :: Python :: 3',
'OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
packages=find_packages(),
install_requires=required,
python_requires='>=3.6',
)