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.

conf.py 1.0 kB

3 months ago
3 months ago
12345678910111213141516171819202122232425262728293031
  1. # Configuration file for the Sphinx documentation builder.
  2. #
  3. # For the full list of built-in configuration values, see the documentation:
  4. # https://www.sphinx-doc.org/en/master/usage/configuration.html
  5. # -- Project information -----------------------------------------------------
  6. # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
  7. import datetime
  8. project = 'MindSpore Signal+ 使用手册'
  9. copyright = '2025 - ' + str(datetime.date.today().year) + ', NUDT-674'
  10. author = 'NUDT-674'
  11. release = "alpha"
  12. # -- General configuration ---------------------------------------------------
  13. # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
  14. extensions = ['myst_parser']
  15. templates_path = ['_templates']
  16. exclude_patterns = []
  17. language = 'zh_CN'
  18. # -- Options for HTML output -------------------------------------------------
  19. # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
  20. html_theme = 'sphinx_rtd_theme'
  21. html_static_path = ['_static']