conf.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. project = 'm2met2'
  8. copyright = '2023, Speech Lab, Alibaba Group; Audio, Speech and Language Processing Group, Northwestern Polytechnical University'
  9. author = 'Speech Lab, Alibaba Group; Audio, Speech and Language Processing Group, Northwestern Polytechnical University'
  10. # -- General configuration ---------------------------------------------------
  11. # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
  12. extensions = [
  13. 'myst_parser',
  14. 'sphinx_rtd_theme',
  15. ]
  16. myst_enable_extensions = [
  17. "colon_fence",
  18. "deflist",
  19. "dollarmath",
  20. ]
  21. myst_heading_anchors = 2
  22. myst_highlight_code_blocks=True
  23. myst_update_mathjax=False
  24. templates_path = ['_templates']
  25. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  26. # -- Options for HTML output -------------------------------------------------
  27. # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
  28. html_theme = 'sphinx_rtd_theme'
  29. html_static_path = ['_static']