blob: 98f6060132be8d71f7e5bc50ffcafa90c09d139f [file] [log] [blame]
Erik Faye-Lund00cd1342019-05-02 23:21:36 +02001#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3
4import 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.
37extensions = []
38
39# Add any paths that contain templates here, relative to this directory.
40templates_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']
46source_suffix = '.rst'
47
48# The master toctree document.
49master_doc = 'index'
50
51# General information about the project.
52project = 'The Mesa 3D Graphics Library'
53copyright = '1995-2018, Brian Paul'
54author = 'Brian Paul'
55html_show_copyright = False
56
57html_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.
64version = 'latest'
65# The full version, including alpha/beta/rc tags.
66release = '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.
73language = 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
78exclude_patterns = [ "contents.rst" ]
79
80# The name of the Pygments (syntax highlighting) style to use.
81pygments_style = 'sphinx'
82
83# If true, `todo` and `todoList` produce output, else they produce nothing.
84todo_include_todos = False
85
86
87# -- Options for HTML output ----------------------------------------------
88
89# The theme to use for HTML and HTML Help pages. See the documentation for
90# a list of builtin themes.
91#
92html_theme = 'sphinx_rtd_theme'
93
94# Theme options are theme-specific and customize the look and feel of a theme
95# further. For a list of options available for each theme, see the
96# documentation.
97#
98# html_theme_options = {}
99
100# Add any paths that contain custom static files (such as style sheets) here,
101# relative to this directory. They are copied after the builtin static files,
102# so a file named "default.css" will overwrite the builtin "default.css".
103html_static_path = []
104
105
106# -- Options for HTMLHelp output ------------------------------------------
107
108# Output file base name for HTML help builder.
109htmlhelp_basename = 'TheMesa3DGraphicsLibrarydoc'
110
111
112# -- Options for LaTeX output ---------------------------------------------
113
114latex_elements = {
115 # The paper size ('letterpaper' or 'a4paper').
116 #
117 # 'papersize': 'letterpaper',
118
119 # The font size ('10pt', '11pt' or '12pt').
120 #
121 # 'pointsize': '10pt',
122
123 # Additional stuff for the LaTeX preamble.
124 #
125 # 'preamble': '',
126
127 # Latex figure (float) alignment
128 #
129 # 'figure_align': 'htbp',
130}
131
132# Grouping the document tree into LaTeX files. List of tuples
133# (source start file, target name, title,
134# author, documentclass [howto, manual, or own class]).
135latex_documents = [
136 (master_doc, 'TheMesa3DGraphicsLibrary.tex', 'The Mesa 3D Graphics Library Documentation',
137 'Brian Paul', 'manual'),
138]
139
140
141# -- Options for manual page output ---------------------------------------
142
143# One entry per manual page. List of tuples
144# (source start file, name, description, authors, manual section).
145man_pages = [
146 (master_doc, 'themesa3dgraphicslibrary', 'The Mesa 3D Graphics Library Documentation',
147 [author], 1)
148]
149
150
151# -- Options for Texinfo output -------------------------------------------
152
153# Grouping the document tree into Texinfo files. List of tuples
154# (source start file, target name, title, author,
155# dir menu entry, description, category)
156texinfo_documents = [
157 (master_doc, 'TheMesa3DGraphicsLibrary', 'The Mesa 3D Graphics Library Documentation',
158 author, 'TheMesa3DGraphicsLibrary', 'One line description of project.',
159 'Miscellaneous'),
160]