conf.py 772 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Configuration file for the Sphinx documentation builder.
  2. # -- Project information
  3. project = 'CherryUSB'
  4. copyright = '2022 ~ 2025, sakumisu'
  5. author = 'sakumisu'
  6. release = '1.5.3'
  7. version = '1.5.3'
  8. # -- General configuration
  9. extensions = [
  10. 'sphinx.ext.duration',
  11. 'sphinx.ext.doctest',
  12. 'sphinx.ext.autodoc',
  13. 'sphinx.ext.autosummary',
  14. 'sphinx.ext.intersphinx',
  15. 'recommonmark',
  16. 'sphinx_markdown_tables'
  17. ]
  18. intersphinx_mapping = {
  19. # 'python': ('https://docs.python.org/3/', None),
  20. # 'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
  21. }
  22. intersphinx_disabled_domains = ['std']
  23. templates_path = ['_templates']
  24. # -- Options for HTML output
  25. html_theme = 'sphinx_rtd_theme'
  26. # -- Options for EPUB output
  27. epub_show_urls = 'footnote'