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

conf.py 2.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 = "FLAML"
  16. copyright = "2020-2021, FLAML Team"
  17. author = "FLAML Team"
  18. # -- General configuration ---------------------------------------------------
  19. # Add any Sphinx extension module names here, as strings. They can be
  20. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  21. # ones.
  22. extensions = [
  23. "sphinx.ext.autodoc",
  24. "sphinx.ext.napoleon",
  25. "sphinx.ext.doctest",
  26. "sphinx.ext.coverage",
  27. "sphinx.ext.mathjax",
  28. "sphinx.ext.viewcode",
  29. "sphinx.ext.githubpages",
  30. "sphinx_rtd_theme",
  31. ]
  32. # Add any paths that contain templates here, relative to this directory.
  33. templates_path = ["_templates"]
  34. # List of patterns, relative to source directory, that match files and
  35. # directories to ignore when looking for source files.
  36. # This pattern also affects html_static_path and html_extra_path.
  37. exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
  38. # -- Options for HTML output -------------------------------------------------
  39. # The theme to use for HTML and HTML Help pages. See the documentation for
  40. # a list of builtin themes.
  41. #
  42. html_theme = "sphinx_rtd_theme"
  43. # Add any paths that contain custom static files (such as style sheets) here,
  44. # relative to this directory. They are copied after the builtin static files,
  45. # so a file named "default.css" will overwrite the builtin "default.css".
  46. html_static_path = ["_static"]