conf.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. 'nbsphinx',
  14. 'sphinx_rtd_theme',
  15. "sphinx.ext.autodoc",
  16. 'sphinx.ext.napoleon',
  17. 'sphinx.ext.viewcode',
  18. "sphinx.ext.mathjax",
  19. "sphinx.ext.todo",
  20. "sphinx_markdown_tables",
  21. "sphinx.ext.githubpages",
  22. 'recommonmark',
  23. ]
  24. source_suffix = [".rst", ".md"]
  25. templates_path = ['_templates']
  26. # exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  27. exclude_patterns = []
  28. pygments_style = "sphinx"
  29. # -- Options for HTML output -------------------------------------------------
  30. # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
  31. html_theme = 'sphinx_rtd_theme'
  32. html_static_path = ['_static']