Erik Faye-Lund | 00cd134 | 2019-05-02 23:21:36 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | # -*- coding: utf-8 -*- |
| 3 | |
| 4 | import sphinx_rtd_theme |
| 5 | |
| 6 | # |
| 7 | # The Mesa 3D Graphics Library documentation build configuration file, created by |
| 8 | # sphinx-quickstart on Wed Mar 29 14:08:51 2017. |
| 9 | # |
| 10 | # This file is execfile()d with the current directory set to its |
| 11 | # containing dir. |
| 12 | # |
| 13 | # Note that not all possible configuration values are present in this |
| 14 | # autogenerated file. |
| 15 | # |
| 16 | # All configuration values have a default; values that are commented out |
| 17 | # serve to show the default. |
| 18 | |
| 19 | # If extensions (or modules to document with autodoc) are in another directory, |
| 20 | # add these directories to sys.path here. If the directory is relative to the |
| 21 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
| 22 | # |
| 23 | # import os |
| 24 | # import sys |
| 25 | # sys.path.insert(0, os.path.abspath('.')) |
| 26 | |
| 27 | |
| 28 | # -- General configuration ------------------------------------------------ |
| 29 | |
| 30 | # If your documentation needs a minimal Sphinx version, state it here. |
| 31 | # |
| 32 | # needs_sphinx = '1.0' |
| 33 | |
| 34 | # Add any Sphinx extension module names here, as strings. They can be |
| 35 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 36 | # ones. |
| 37 | extensions = [] |
| 38 | |
| 39 | # Add any paths that contain templates here, relative to this directory. |
| 40 | templates_path = ['_templates'] |
| 41 | |
| 42 | # The suffix(es) of source filenames. |
| 43 | # You can specify multiple suffix as a list of string: |
| 44 | # |
| 45 | # source_suffix = ['.rst', '.md'] |
| 46 | source_suffix = '.rst' |
| 47 | |
| 48 | # The master toctree document. |
| 49 | master_doc = 'index' |
| 50 | |
| 51 | # General information about the project. |
| 52 | project = 'The Mesa 3D Graphics Library' |
| 53 | copyright = '1995-2018, Brian Paul' |
| 54 | author = 'Brian Paul' |
| 55 | html_show_copyright = False |
| 56 | |
| 57 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] |
| 58 | |
| 59 | # The version info for the project you're documenting, acts as replacement for |
| 60 | # |version| and |release|, also used in various other places throughout the |
| 61 | # built documents. |
| 62 | # |
| 63 | # The short X.Y version. |
| 64 | version = 'latest' |
| 65 | # The full version, including alpha/beta/rc tags. |
| 66 | release = 'latest' |
| 67 | |
| 68 | # The language for content autogenerated by Sphinx. Refer to documentation |
| 69 | # for a list of supported languages. |
| 70 | # |
| 71 | # This is also used if you do content translation via gettext catalogs. |
| 72 | # Usually you set "language" from the command line for these cases. |
| 73 | language = None |
| 74 | |
| 75 | # List of patterns, relative to source directory, that match files and |
| 76 | # directories to ignore when looking for source files. |
| 77 | # This patterns also effect to html_static_path and html_extra_path |
| 78 | exclude_patterns = [ "contents.rst" ] |
| 79 | |
| 80 | # The name of the Pygments (syntax highlighting) style to use. |
| 81 | pygments_style = 'sphinx' |
| 82 | |
| 83 | # If true, `todo` and `todoList` produce output, else they produce nothing. |
| 84 | todo_include_todos = False |
| 85 | |
Erik Faye-Lund | dcaab1b | 2019-06-04 15:15:39 +0200 | [diff] [blame^] | 86 | # Disable highlighting unless a language is specified, otherwise we'll get |
| 87 | # python keywords highlit in literal blocks. |
| 88 | highlight_language = "none" |
| 89 | |
Erik Faye-Lund | 00cd134 | 2019-05-02 23:21:36 +0200 | [diff] [blame] | 90 | |
| 91 | # -- Options for HTML output ---------------------------------------------- |
| 92 | |
| 93 | # The theme to use for HTML and HTML Help pages. See the documentation for |
| 94 | # a list of builtin themes. |
| 95 | # |
| 96 | html_theme = 'sphinx_rtd_theme' |
| 97 | |
| 98 | # Theme options are theme-specific and customize the look and feel of a theme |
| 99 | # further. For a list of options available for each theme, see the |
| 100 | # documentation. |
| 101 | # |
| 102 | # html_theme_options = {} |
| 103 | |
| 104 | # Add any paths that contain custom static files (such as style sheets) here, |
| 105 | # relative to this directory. They are copied after the builtin static files, |
| 106 | # so a file named "default.css" will overwrite the builtin "default.css". |
| 107 | html_static_path = [] |
| 108 | |
| 109 | |
| 110 | # -- Options for HTMLHelp output ------------------------------------------ |
| 111 | |
| 112 | # Output file base name for HTML help builder. |
| 113 | htmlhelp_basename = 'TheMesa3DGraphicsLibrarydoc' |
| 114 | |
| 115 | |
| 116 | # -- Options for LaTeX output --------------------------------------------- |
| 117 | |
| 118 | latex_elements = { |
| 119 | # The paper size ('letterpaper' or 'a4paper'). |
| 120 | # |
| 121 | # 'papersize': 'letterpaper', |
| 122 | |
| 123 | # The font size ('10pt', '11pt' or '12pt'). |
| 124 | # |
| 125 | # 'pointsize': '10pt', |
| 126 | |
| 127 | # Additional stuff for the LaTeX preamble. |
| 128 | # |
| 129 | # 'preamble': '', |
| 130 | |
| 131 | # Latex figure (float) alignment |
| 132 | # |
| 133 | # 'figure_align': 'htbp', |
| 134 | } |
| 135 | |
| 136 | # Grouping the document tree into LaTeX files. List of tuples |
| 137 | # (source start file, target name, title, |
| 138 | # author, documentclass [howto, manual, or own class]). |
| 139 | latex_documents = [ |
| 140 | (master_doc, 'TheMesa3DGraphicsLibrary.tex', 'The Mesa 3D Graphics Library Documentation', |
| 141 | 'Brian Paul', 'manual'), |
| 142 | ] |
| 143 | |
| 144 | |
| 145 | # -- Options for manual page output --------------------------------------- |
| 146 | |
| 147 | # One entry per manual page. List of tuples |
| 148 | # (source start file, name, description, authors, manual section). |
| 149 | man_pages = [ |
| 150 | (master_doc, 'themesa3dgraphicslibrary', 'The Mesa 3D Graphics Library Documentation', |
| 151 | [author], 1) |
| 152 | ] |
| 153 | |
| 154 | |
| 155 | # -- Options for Texinfo output ------------------------------------------- |
| 156 | |
| 157 | # Grouping the document tree into Texinfo files. List of tuples |
| 158 | # (source start file, target name, title, author, |
| 159 | # dir menu entry, description, category) |
| 160 | texinfo_documents = [ |
| 161 | (master_doc, 'TheMesa3DGraphicsLibrary', 'The Mesa 3D Graphics Library Documentation', |
| 162 | author, 'TheMesa3DGraphicsLibrary', 'One line description of project.', |
| 163 | 'Miscellaneous'), |
| 164 | ] |