conf.py 722 B

12345678910111213141516171819202122232425262728293031323334353637
  1. project = 'uPython'
  2. copyright = '2024, Oliver Fabel'
  3. author = 'Oliver Fabel'
  4. release = '1.0.0'
  5. language = 'en'
  6. extensions = [
  7. 'sphinx.ext.autodoc',
  8. 'myst_parser'
  9. ]
  10. source_suffix = {
  11. '.rst': 'restructuredtext',
  12. '.md': 'markdown'
  13. }
  14. templates_path = [
  15. 'templates'
  16. ]
  17. exclude_patterns = []
  18. include_patterns = [
  19. '**'
  20. ]
  21. html_theme = 'alabaster'
  22. html_theme_options = {
  23. 'extra_nav_links': {
  24. 'Source Code': 'https://www.github.com/ofabel/mp-flipper',
  25. 'Bugtracker': 'https://www.github.com/ofabel/mp-flipper/issues',
  26. 'Releases': 'https://lab.flipper.net/apps/upython'
  27. }
  28. }
  29. html_static_path = [
  30. 'static'
  31. ]
  32. html_logo = 'assets/logo.png'
  33. html_favicon = 'assets/favicon.png'