|
1 | 1 | #!/usr/bin/env python3 |
2 | | -# -*- coding: utf-8 -*- |
3 | 2 | # |
4 | 3 | # parsy documentation build configuration file, created by |
5 | 4 | # sphinx-quickstart on Mon Sep 25 22:24:17 2017. |
|
33 | 32 | # Add any Sphinx extension module names here, as strings. They can be |
34 | 33 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
35 | 34 | # ones. |
36 | | -extensions = ['sphinx.ext.viewcode'] |
| 35 | +extensions = ["sphinx.ext.viewcode"] |
37 | 36 |
|
38 | 37 | # Add any paths that contain templates here, relative to this directory. |
39 | | -templates_path = ['_templates'] |
| 38 | +templates_path = ["_templates"] |
40 | 39 |
|
41 | 40 | # The suffix(es) of source filenames. |
42 | 41 | # You can specify multiple suffix as a list of string: |
43 | 42 | # |
44 | 43 | # source_suffix = ['.rst', '.md'] |
45 | | -source_suffix = '.rst' |
| 44 | +source_suffix = ".rst" |
46 | 45 |
|
47 | 46 | # The master toctree document. |
48 | | -master_doc = 'index' |
| 47 | +master_doc = "index" |
49 | 48 |
|
50 | 49 | # General information about the project. |
51 | | -project = 'parsy' |
52 | | -copyright = '2017, Jeanine Adkisson, Luke Plant' |
53 | | -author = 'Jeanine Adkisson' |
| 50 | +project = "parsy" |
| 51 | +copyright = "2017, Jeanine Adkisson, Luke Plant" |
| 52 | +author = "Jeanine Adkisson" |
54 | 53 |
|
55 | 54 | # The version info for the project you're documenting, acts as replacement for |
56 | 55 | # |version| and |release|, also used in various other places throughout the |
57 | 56 | # built documents. |
58 | 57 | # |
59 | 58 | # The short X.Y version. |
60 | | -version = '2.0' |
| 59 | +version = "2.0" |
61 | 60 | # The full version, including alpha/beta/rc tags. |
62 | | -release = '2.0-dev' |
| 61 | +release = "2.0-dev" |
63 | 62 |
|
64 | 63 | # The language for content autogenerated by Sphinx. Refer to documentation |
65 | 64 | # for a list of supported languages. |
|
71 | 70 | # List of patterns, relative to source directory, that match files and |
72 | 71 | # directories to ignore when looking for source files. |
73 | 72 | # This patterns also effect to html_static_path and html_extra_path |
74 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 73 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
75 | 74 |
|
76 | 75 | # The name of the Pygments (syntax highlighting) style to use. |
77 | | -pygments_style = 'sphinx' |
| 76 | +pygments_style = "sphinx" |
78 | 77 |
|
79 | 78 | # If true, `todo` and `todoList` produce output, else they produce nothing. |
80 | 79 | todo_include_todos = False |
|
85 | 84 | # The theme to use for HTML and HTML Help pages. See the documentation for |
86 | 85 | # a list of builtin themes. |
87 | 86 | # |
88 | | -html_theme = 'default' |
| 87 | +html_theme = "default" |
89 | 88 |
|
90 | 89 | # Theme options are theme-specific and customize the look and feel of a theme |
91 | 90 | # further. For a list of options available for each theme, see the |
|
96 | 95 | # Add any paths that contain custom static files (such as style sheets) here, |
97 | 96 | # relative to this directory. They are copied after the builtin static files, |
98 | 97 | # so a file named "default.css" will overwrite the builtin "default.css". |
99 | | -html_static_path = ['_static'] |
| 98 | +html_static_path = ["_static"] |
100 | 99 |
|
101 | 100 |
|
102 | 101 | # -- Options for HTMLHelp output ------------------------------------------ |
103 | 102 |
|
104 | 103 | # Output file base name for HTML help builder. |
105 | | -htmlhelp_basename = 'parsydoc' |
| 104 | +htmlhelp_basename = "parsydoc" |
106 | 105 |
|
107 | 106 |
|
108 | 107 | # -- Options for LaTeX output --------------------------------------------- |
|
111 | 110 | # The paper size ('letterpaper' or 'a4paper'). |
112 | 111 | # |
113 | 112 | # 'papersize': 'letterpaper', |
114 | | - |
115 | 113 | # The font size ('10pt', '11pt' or '12pt'). |
116 | 114 | # |
117 | 115 | # 'pointsize': '10pt', |
118 | | - |
119 | 116 | # Additional stuff for the LaTeX preamble. |
120 | 117 | # |
121 | 118 | # 'preamble': '', |
122 | | - |
123 | 119 | # Latex figure (float) alignment |
124 | 120 | # |
125 | 121 | # 'figure_align': 'htbp', |
|
129 | 125 | # (source start file, target name, title, |
130 | 126 | # author, documentclass [howto, manual, or own class]). |
131 | 127 | latex_documents = [ |
132 | | - (master_doc, 'parsy.tex', 'parsy Documentation', |
133 | | - 'Jeanine Adkisson', 'manual'), |
| 128 | + (master_doc, "parsy.tex", "parsy Documentation", "Jeanine Adkisson", "manual"), |
134 | 129 | ] |
135 | 130 |
|
136 | 131 |
|
137 | 132 | # -- Options for manual page output --------------------------------------- |
138 | 133 |
|
139 | 134 | # One entry per manual page. List of tuples |
140 | 135 | # (source start file, name, description, authors, manual section). |
141 | | -man_pages = [ |
142 | | - (master_doc, 'parsy', 'parsy Documentation', |
143 | | - [author], 1) |
144 | | -] |
| 136 | +man_pages = [(master_doc, "parsy", "parsy Documentation", [author], 1)] |
145 | 137 |
|
146 | 138 |
|
147 | 139 | # -- Options for Texinfo output ------------------------------------------- |
|
150 | 142 | # (source start file, target name, title, author, |
151 | 143 | # dir menu entry, description, category) |
152 | 144 | texinfo_documents = [ |
153 | | - (master_doc, 'parsy', 'parsy Documentation', |
154 | | - author, 'parsy', 'One line description of project.', |
155 | | - 'Miscellaneous'), |
| 145 | + (master_doc, "parsy", "parsy Documentation", author, "parsy", "One line description of project.", "Miscellaneous"), |
156 | 146 | ] |
0 commit comments