Files
openvino/docs/openvino_sphinx_theme/setup.py
T
Nikolay TyukaevandAndrey Zaytsev 361dec7362 Docs to Sphinx (#8151)
* docs to sphinx

* Update GPU.md

* Update CPU.md

* Update AUTO.md

* Update performance_int8_vs_fp32.md

* update

* update md

* updates

* disable doc ci

* disable ci

* fix index.rst

Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
2021-10-24 17:43:00 +03:00

20 lines
620 B
Python

from setuptools import setup
setup(
name='openvino-sphinx-theme',
version='0.0.1',
packages=['openvino_sphinx_theme'],
maintainer='Nikolay Tyukaev',
maintainer_email='nikolay.tyukaev@intel.com',
include_package_data=True,
entry_points={"sphinx.html_themes": ["openvino_sphinx_theme = openvino_sphinx_theme"]},
install_requires=['pydata_sphinx_theme', 'sphinx_inline_tabs'],
python_requires='>=3.5',
url='https://github.com/openvinotoolkit/openvino',
license='',
author='Intel Corporation',
author_email='',
description='A Sphinx theme',
long_description=''
)