conf.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. # If extensions (or modules to document with autodoc) are in another directory,
  8. # add these directories to sys.path here. If the directory is relative to the
  9. # documentation root, use os.path.abspath to make it absolute, like shown here.
  10. #
  11. import os
  12. import sys
  13. sys.path.insert(0, os.path.abspath('../../'))
  14. # -- Project information -----------------------------------------------------
  15. project = 'pypulseq'
  16. copyright = '2023, Keerthi Sravan Ravi'
  17. author = 'Keerthi Sravan Ravi'
  18. # The full version, including alpha/beta/rc tags
  19. release = '1.4.0'
  20. # -- General configuration ---------------------------------------------------
  21. # Add any Sphinx extension module names here, as strings. They can be
  22. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  23. # ones.
  24. extensions = [
  25. 'sphinx.ext.autodoc', 'sphinx.ext.napoleon', 'recommonmark'
  26. ]
  27. source_suffix = {
  28. '.rst': 'restructuredtext',
  29. '.txt': 'restructuredtext',
  30. '.md': 'markdown',
  31. }
  32. source_parsers = {'.md': 'recommonmark.parser.CommonMarkParser'}
  33. # Add any paths that contain templates here, relative to this directory.
  34. templates_path = ['_templates']
  35. # List of patterns, relative to source directory, that match files and
  36. # directories to ignore when looking for source files.
  37. # This pattern also affects html_static_path and html_extra_path.
  38. exclude_patterns = ['setup*', 'version*']
  39. autodoc_mock_imports = ['numpy', 'matplotlib', 'scipy', 'sigpy']
  40. # -- Options for HTML output -------------------------------------------------
  41. # The theme to use for HTML and HTML Help pages. See the documentation for
  42. # a list of builtin themes.
  43. #
  44. html_theme = 'furo'
  45. html_logo = '../../logo_transparent.png'
  46. # Add any paths that contain custom static files (such as style sheets) here,
  47. # relative to this directory. They are copied after the builtin static files,
  48. # so a file named "default.css" will overwrite the builtin "default.css".
  49. html_static_path = ['_static']