Advertisement
Guest User

Untitled

a guest
Jun 1st, 2022
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3.  
  4. # -- Project information -----------------------------------------------------
  5.  
  6. project = "Test"
  7. author = "Test"
  8.  
  9. # The short X.Y version
  10. version = ""
  11. # The full version, including alpha/beta/rc tags
  12. release = ""
  13.  
  14.  
  15. # -- General configuration ---------------------------------------------------
  16.  
  17. # Add any Sphinx extension module names here, as strings. They can be
  18. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  19. # ones.
  20. extensions = ["sphinx.ext.autosectionlabel"]
  21.  
  22. # Add any paths that contain templates here, relative to this directory.
  23. templates_path = ["_templates"]
  24.  
  25. # The suffix(es) of source filenames.
  26. # You can specify multiple suffix as a list of string:
  27. #
  28. # source_suffix = ['.rst', '.md']
  29. source_suffix = ".rst"
  30.  
  31. # The master toctree document.
  32. master_doc = "index"
  33.  
  34. # The language for content autogenerated by Sphinx. Refer to documentation
  35. # for a list of supported languages.
  36. #
  37. # This is also used if you do content translation via gettext catalogs.
  38. # Usually you set "language" from the command line for these cases.
  39. language = None
  40.  
  41. # List of patterns, relative to source directory, that match files and
  42. # directories to ignore when looking for source files.
  43. # This pattern also affects html_static_path and html_extra_path.
  44. exclude_patterns = []
  45.  
  46. # The name of the Pygments (syntax highlighting) style to use.
  47. pygments_style = None
  48.  
  49.  
  50. # -- Options for HTML output -------------------------------------------------
  51.  
  52. # The theme to use for HTML and HTML Help pages. See the documentation for
  53. # a list of builtin themes.
  54. #
  55. html_theme = "sphinx-bluebrain-theme"
  56.  
  57. html_title = "Test Page"
  58.  
  59. html_favicon = "favicon.ico"
  60.  
  61. # Add any paths that contain custom static files (such as style sheets) here,
  62. # relative to this directory. They are copied after the builtin static files,
  63. # so a file named "default.css" will overwrite the builtin "default.css".
  64. html_static_path = ["_static"]
  65. html_copy_source = False
  66.  
  67. autosectionlabel_prefix_document = True
  68.  
  69. numfig = True
  70.  
  71. def setup(app):
  72. app.add_css_file("custom.css")
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement