|
34 | 34 | extensions = [] |
35 | 35 |
|
36 | 36 | # Add any paths that contain templates here, relative to this directory. |
37 | | -templates_path = ['_templates'] |
| 37 | +templates_path = ["_templates"] |
38 | 38 |
|
39 | 39 | # The suffix(es) of source filenames. |
40 | 40 | # You can specify multiple suffix as a list of string: |
41 | 41 | # |
42 | 42 | # source_suffix = ['.rst', '.md'] |
43 | | -source_suffix = '.rst' |
| 43 | +source_suffix = ".rst" |
44 | 44 |
|
45 | 45 | # The master toctree document. |
46 | | -master_doc = 'index' |
| 46 | +master_doc = "index" |
47 | 47 |
|
48 | 48 | # General information about the project. |
49 | | -project = 'Python Performance Benchmark Suite' |
50 | | -copyright = '2017, Victor Stinner' |
51 | | -author = 'Victor Stinner' |
| 49 | +project = "Python Performance Benchmark Suite" |
| 50 | +copyright = "2017, Victor Stinner" |
| 51 | +author = "Victor Stinner" |
52 | 52 |
|
53 | 53 | # The version info for the project you're documenting, acts as replacement for |
54 | 54 | # |version| and |release|, also used in various other places throughout the |
55 | 55 | # built documents. |
56 | 56 | # |
57 | 57 | # The short X.Y version. |
58 | | -version = release = '1.0.6' |
| 58 | +version = release = "1.0.6" |
59 | 59 |
|
60 | 60 | # The language for content autogenerated by Sphinx. Refer to documentation |
61 | 61 | # for a list of supported languages. |
|
67 | 67 | # List of patterns, relative to source directory, that match files and |
68 | 68 | # directories to ignore when looking for source files. |
69 | 69 | # This patterns also effect to html_static_path and html_extra_path |
70 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 70 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
71 | 71 |
|
72 | 72 | # The name of the Pygments (syntax highlighting) style to use. |
73 | | -pygments_style = 'sphinx' |
| 73 | +pygments_style = "sphinx" |
74 | 74 |
|
75 | 75 | # If true, `todo` and `todoList` produce output, else they produce nothing. |
76 | 76 | todo_include_todos = False |
|
81 | 81 | # The theme to use for HTML and HTML Help pages. See the documentation for |
82 | 82 | # a list of builtin themes. |
83 | 83 | # |
84 | | -html_theme = 'alabaster' |
| 84 | +html_theme = "alabaster" |
85 | 85 |
|
86 | 86 | # Theme options are theme-specific and customize the look and feel of a theme |
87 | 87 | # further. For a list of options available for each theme, see the |
|
92 | 92 | # Add any paths that contain custom static files (such as style sheets) here, |
93 | 93 | # relative to this directory. They are copied after the builtin static files, |
94 | 94 | # so a file named "default.css" will overwrite the builtin "default.css". |
95 | | -html_static_path = ['_static'] |
| 95 | +html_static_path = ["_static"] |
96 | 96 |
|
97 | 97 |
|
98 | 98 | # -- Options for HTMLHelp output ------------------------------------------ |
99 | 99 |
|
100 | 100 | # Output file base name for HTML help builder. |
101 | | -htmlhelp_basename = 'PythonPerformanceBenchmarkSuitedoc' |
| 101 | +htmlhelp_basename = "PythonPerformanceBenchmarkSuitedoc" |
102 | 102 |
|
103 | 103 |
|
104 | 104 | # -- Options for LaTeX output --------------------------------------------- |
|
107 | 107 | # The paper size ('letterpaper' or 'a4paper'). |
108 | 108 | # |
109 | 109 | # 'papersize': 'letterpaper', |
110 | | - |
111 | 110 | # The font size ('10pt', '11pt' or '12pt'). |
112 | 111 | # |
113 | 112 | # 'pointsize': '10pt', |
114 | | - |
115 | 113 | # Additional stuff for the LaTeX preamble. |
116 | 114 | # |
117 | 115 | # 'preamble': '', |
118 | | - |
119 | 116 | # Latex figure (float) alignment |
120 | 117 | # |
121 | 118 | # 'figure_align': 'htbp', |
|
125 | 122 | # (source start file, target name, title, |
126 | 123 | # author, documentclass [howto, manual, or own class]). |
127 | 124 | latex_documents = [ |
128 | | - (master_doc, 'PythonPerformanceBenchmarkSuite.tex', 'Python Performance Benchmark Suite Documentation', |
129 | | - 'Victor Stinner', 'manual'), |
| 125 | + ( |
| 126 | + master_doc, |
| 127 | + "PythonPerformanceBenchmarkSuite.tex", |
| 128 | + "Python Performance Benchmark Suite Documentation", |
| 129 | + "Victor Stinner", |
| 130 | + "manual", |
| 131 | + ), |
130 | 132 | ] |
131 | 133 |
|
132 | 134 |
|
|
135 | 137 | # One entry per manual page. List of tuples |
136 | 138 | # (source start file, name, description, authors, manual section). |
137 | 139 | man_pages = [ |
138 | | - (master_doc, 'pythonperformancebenchmarksuite', 'Python Performance Benchmark Suite Documentation', |
139 | | - [author], 1) |
| 140 | + ( |
| 141 | + master_doc, |
| 142 | + "pythonperformancebenchmarksuite", |
| 143 | + "Python Performance Benchmark Suite Documentation", |
| 144 | + [author], |
| 145 | + 1, |
| 146 | + ) |
140 | 147 | ] |
141 | 148 |
|
142 | 149 |
|
|
146 | 153 | # (source start file, target name, title, author, |
147 | 154 | # dir menu entry, description, category) |
148 | 155 | texinfo_documents = [ |
149 | | - (master_doc, 'PythonPerformanceBenchmarkSuite', 'Python Performance Benchmark Suite Documentation', |
150 | | - author, 'PythonPerformanceBenchmarkSuite', 'One line description of project.', |
151 | | - 'Miscellaneous'), |
| 156 | + ( |
| 157 | + master_doc, |
| 158 | + "PythonPerformanceBenchmarkSuite", |
| 159 | + "Python Performance Benchmark Suite Documentation", |
| 160 | + author, |
| 161 | + "PythonPerformanceBenchmarkSuite", |
| 162 | + "One line description of project.", |
| 163 | + "Miscellaneous", |
| 164 | + ), |
152 | 165 | ] |
153 | | - |
154 | | - |
155 | | - |
|
0 commit comments