conf.py 951 B

123456789101112131415161718192021222324252627
  1. # Configuration file for the Sphinx documentation builder.
  2. #
  3. # For the full list of built-in configuration values, see the documentation:
  4. # https://www.sphinx-doc.org/en/master/usage/configuration.html
  5. # -- Project information -----------------------------------------------------
  6. # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
  7. project = 'libmegapixels'
  8. copyright = '2023, Martijn Braam'
  9. author = 'Martijn Braam'
  10. # -- General configuration ---------------------------------------------------
  11. # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
  12. extensions = []
  13. templates_path = ['_templates']
  14. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  15. # -- Options for HTML output -------------------------------------------------
  16. # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
  17. html_theme = 'alabaster'
  18. html_static_path = ['_static']