conf.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 = 'MCell4'
  16. copyright = '2020-2021, Salk Institute'
  17. author = 'Salk Institute'
  18. import os
  19. basedir = os.path.dirname(os.path.abspath(__file__))
  20. with open(os.path.join(basedir, '..', '..', 'src', 'version.txt'), 'r') as f:
  21. version = f.readline().strip()
  22. # -- General configuration ---------------------------------------------------
  23. # Add any Sphinx extension module names here, as strings. They can be
  24. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  25. # ones.
  26. extensions = [
  27. "sphinx_rtd_theme",
  28. "sphinx.ext.autosectionlabel"
  29. ]
  30. autosectionlabel_prefix_document = True
  31. # Add any paths that contain templates here, relative to this directory.
  32. templates_path = ['templates']
  33. # List of patterns, relative to source directory, that match files and
  34. # directories to ignore when looking for source files.
  35. # This pattern also affects html_static_path and html_extra_path.
  36. exclude_patterns = []
  37. # -- Options for HTML output -------------------------------------------------
  38. # The theme to use for HTML and HTML Help pages. See the documentation for
  39. # a list of builtin themes.
  40. #
  41. html_theme = "sphinx_rtd_theme"
  42. # Add any paths that contain custom static files (such as style sheets) here,
  43. # relative to this directory. They are copied after the builtin static files,
  44. # so a file named "default.css" will overwrite the builtin "default.css".
  45. #html_static_path = ['static']