22 lines
665 B
Python
22 lines
665 B
Python
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='openvino-sphinx-theme',
|
|
version='0.0.1',
|
|
packages=['openvino_sphinx_theme'],
|
|
maintainer='OpenVINO Documentation Team',
|
|
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.7',
|
|
url='https://github.com/openvinotoolkit/openvino',
|
|
license='',
|
|
author='Intel Corporation',
|
|
author_email='',
|
|
description='A Sphinx theme',
|
|
long_description=''
|
|
)
|