conf.py 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Configuration file for the Sphinx documentation builder.
  2. #
  3. # This file only contains a selection of the most common options. For a full
  4. # list see the documentation:
  5. # https://www.sphinx-doc.org/en/master/usage/configuration.html
  6. # -- Path setup --------------------------------------------------------------
  7. # -- Project information -----------------------------------------------------
  8. project = 'TinyUSB'
  9. copyright = '2021, Ha Thach'
  10. author = 'Ha Thach'
  11. # -- General configuration ---------------------------------------------------
  12. extensions = [
  13. 'sphinx.ext.autodoc',
  14. 'sphinx.ext.intersphinx',
  15. 'sphinx.ext.todo',
  16. 'sphinx_autodoc_typehints',
  17. 'sphinxemoji.sphinxemoji',
  18. ]
  19. templates_path = ['_templates']
  20. exclude_patterns = ['_build']
  21. # -- Options for HTML output -------------------------------------------------
  22. html_theme = 'furo'
  23. html_title = 'TinyUSB'
  24. html_logo = 'assets/logo.svg'
  25. html_favicon = 'assets/logo.svg'
  26. html_theme_options = {
  27. 'sidebar_hide_name': True,
  28. }
  29. todo_include_todos = True