You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  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. # -- Set path -----------------------------------------------------
  6. import os
  7. import sys
  8. sys.path.insert(0, os.path.abspath('..'))
  9. sys.path.insert(0, os.path.abspath('../Example'))
  10. # -- Project information -----------------------------------------------------
  11. # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
  12. project = 'DyLabDataCruncher'
  13. copyright = '2023, Jianshun Gao'
  14. author = 'Jianshun Gao'
  15. release = '0.5'
  16. # -- General configuration ---------------------------------------------------
  17. # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
  18. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon',
  19. 'nbsphinx', 'nbsphinx_link']
  20. templates_path = ['_templates']
  21. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  22. autodoc_mock_imports = ['scipy', 'pandas']
  23. # -- Options for HTML output -------------------------------------------------
  24. # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
  25. html_theme = 'alabaster'
  26. html_static_path = ['_static']
  27. html_theme = 'sphinx_rtd_theme'