You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # Configuration file for the Sphinx documentation builder.
- #
- # For the full list of built-in configuration values, see the documentation:
- # https://www.sphinx-doc.org/en/master/usage/configuration.html
-
- # -- Project information -----------------------------------------------------
- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
-
-
- import datetime
-
- project = 'MindSpore Signal+ 使用手册'
- copyright = '2025 - ' + str(datetime.date.today().year) + ', NUDT-674'
- author = 'NUDT-674'
- release = "alpha"
-
- # -- General configuration ---------------------------------------------------
- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
-
- extensions = ['myst_parser']
-
- templates_path = ['_templates']
- exclude_patterns = []
-
- language = 'zh_CN'
- # 语法高亮样式
- pygments_style = 'sphinx'
-
- # -- Options for HTML output -------------------------------------------------
- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
-
- html_theme = 'sphinx_rtd_theme'
- html_static_path = ['_static']
|