mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
In addition to ORTModule auto documentation during packaging, this PR also update golden numbers to fix CI
31 lines
921 B
Python
31 lines
921 B
Python
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Configuration file for the Sphinx documentation builder.
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
project = 'ORTModule'
|
|
copyright = '2018-2021, Microsoft'
|
|
author = 'Microsoft'
|
|
version = '0.1' # TODO: Should use `onnxruntime.__version__` instead?
|
|
release = version
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
extensions = ['sphinx.ext.autodoc',
|
|
'sphinx.ext.intersphinx'
|
|
]
|
|
templates_path = ['_templates']
|
|
exclude_patterns = []
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_static_path = ['_static']
|
|
|
|
# -- Options for intersphinx extension ---------------------------------------
|
|
|
|
intersphinx_mapping = {'https://docs.python.org/': None}
|