|
15 | 15 | import os |
16 | 16 | import sys |
17 | 17 |
|
18 | | -sys.path.insert(0, os.path.abspath('..')) |
| 18 | +sys.path.insert(0, os.path.abspath("..")) |
19 | 19 |
|
20 | 20 |
|
21 | 21 | # -- Project information ----------------------------------------------------- |
22 | 22 |
|
23 | | -project = u'Sync2Jira' |
24 | | -copyright = u'2019, Ralph Bean' |
25 | | -author = u'Ralph Bean' |
| 23 | +project = "Sync2Jira" |
| 24 | +copyright = "2019, Ralph Bean" |
| 25 | +author = "Ralph Bean" |
26 | 26 |
|
27 | 27 | # The short X.Y version |
28 | | -version = u'2.0' |
| 28 | +version = "2.0" |
29 | 29 | # The full version, including alpha/beta/rc tags |
30 | | -release = u'2.0' |
| 30 | +release = "2.0" |
31 | 31 |
|
32 | 32 |
|
33 | 33 | # -- General configuration --------------------------------------------------- |
|
40 | 40 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
41 | 41 | # ones. |
42 | 42 | extensions = [ |
43 | | - 'sphinx.ext.autodoc', |
44 | | - 'sphinx.ext.doctest', |
45 | | - 'sphinx.ext.intersphinx', |
46 | | - 'sphinx.ext.todo', |
47 | | - 'sphinx.ext.coverage', |
48 | | - 'sphinx.ext.mathjax', |
49 | | - 'sphinx.ext.ifconfig', |
50 | | - 'sphinx.ext.viewcode', |
51 | | - 'sphinx.ext.githubpages', |
| 43 | + "sphinx.ext.autodoc", |
| 44 | + "sphinx.ext.doctest", |
| 45 | + "sphinx.ext.intersphinx", |
| 46 | + "sphinx.ext.todo", |
| 47 | + "sphinx.ext.coverage", |
| 48 | + "sphinx.ext.mathjax", |
| 49 | + "sphinx.ext.ifconfig", |
| 50 | + "sphinx.ext.viewcode", |
| 51 | + "sphinx.ext.githubpages", |
52 | 52 | ] |
53 | 53 |
|
54 | 54 | # Add any paths that contain templates here, relative to this directory. |
55 | | -templates_path = ['ntemplates'] |
| 55 | +templates_path = ["ntemplates"] |
56 | 56 |
|
57 | 57 | # The suffix(es) of source filenames. |
58 | 58 | # You can specify multiple suffix as a list of string: |
59 | 59 | # |
60 | 60 | # source_suffix = ['.rst', '.md'] |
61 | | -source_suffix = '.rst' |
| 61 | +source_suffix = ".rst" |
62 | 62 |
|
63 | 63 | # The master toctree document. |
64 | | -master_doc = 'index' |
| 64 | +master_doc = "index" |
65 | 65 |
|
66 | 66 | # The language for content autogenerated by Sphinx. Refer to documentation |
67 | 67 | # for a list of supported languages. |
|
84 | 84 | # The theme to use for HTML and HTML Help pages. See the documentation for |
85 | 85 | # a list of builtin themes. |
86 | 86 | # |
87 | | -html_theme = 'sphinx_rtd_theme' |
| 87 | +html_theme = "sphinx_rtd_theme" |
88 | 88 |
|
89 | 89 | # Theme options are theme-specific and customize the look and feel of a theme |
90 | 90 | # further. For a list of options available for each theme, see the |
|
95 | 95 | # Add any paths that contain custom static files (such as style sheets) here, |
96 | 96 | # relative to this directory. They are copied after the builtin static files, |
97 | 97 | # so a file named "default.css" will overwrite the builtin "default.css". |
98 | | -html_static_path = ['nstatic'] |
| 98 | +html_static_path = ["nstatic"] |
99 | 99 |
|
100 | 100 | # Custom sidebar templates, must be a dictionary that maps document names |
101 | 101 | # to template names. |
|
105 | 105 | # default: ``['localtoc.html', 'relations.html', 'sourcelink.html', |
106 | 106 | # 'searchbox.html']``. |
107 | 107 | # |
108 | | -html_sidebars = { '**': ['globaltoc.html', 'searchbox.html'] } |
| 108 | +html_sidebars = {"**": ["globaltoc.html", "searchbox.html"]} |
109 | 109 |
|
110 | 110 |
|
111 | 111 | # -- Options for HTMLHelp output --------------------------------------------- |
112 | 112 |
|
113 | 113 | # Output file base name for HTML help builder. |
114 | | -htmlhelp_basename = 'Sync2Jiradoc' |
| 114 | +htmlhelp_basename = "Sync2Jiradoc" |
115 | 115 |
|
116 | 116 |
|
117 | 117 | # -- Options for LaTeX output ------------------------------------------------ |
|
120 | 120 | # The paper size ('letterpaper' or 'a4paper'). |
121 | 121 | # |
122 | 122 | # 'papersize': 'letterpaper', |
123 | | - |
124 | 123 | # The font size ('10pt', '11pt' or '12pt'). |
125 | 124 | # |
126 | 125 | # 'pointsize': '10pt', |
127 | | - |
128 | 126 | # Additional stuff for the LaTeX preamble. |
129 | 127 | # |
130 | 128 | # 'preamble': '', |
131 | | - |
132 | 129 | # Latex figure (float) alignment |
133 | 130 | # |
134 | 131 | # 'figure_align': 'htbp', |
|
138 | 135 | # (source start file, target name, title, |
139 | 136 | # author, documentclass [howto, manual, or own class]). |
140 | 137 | latex_documents = [ |
141 | | - (master_doc, 'Sync2Jira.tex', u'Sync2Jira Documentation', |
142 | | - u'Ralph Bean', 'manual'), |
| 138 | + (master_doc, "Sync2Jira.tex", "Sync2Jira Documentation", "Ralph Bean", "manual"), |
143 | 139 | ] |
144 | 140 |
|
145 | 141 |
|
146 | 142 | # -- Options for manual page output ------------------------------------------ |
147 | 143 |
|
148 | 144 | # One entry per manual page. List of tuples |
149 | 145 | # (source start file, name, description, authors, manual section). |
150 | | -man_pages = [ |
151 | | - (master_doc, 'sync2jira', u'Sync2Jira Documentation', |
152 | | - [author], 1) |
153 | | -] |
| 146 | +man_pages = [(master_doc, "sync2jira", "Sync2Jira Documentation", [author], 1)] |
154 | 147 |
|
155 | 148 |
|
156 | 149 | # -- Options for Texinfo output ---------------------------------------------- |
|
159 | 152 | # (source start file, target name, title, author, |
160 | 153 | # dir menu entry, description, category) |
161 | 154 | texinfo_documents = [ |
162 | | - (master_doc, 'Sync2Jira', u'Sync2Jira Documentation', |
163 | | - author, 'Sync2Jira', 'One line description of project.', |
164 | | - 'Miscellaneous'), |
| 155 | + ( |
| 156 | + master_doc, |
| 157 | + "Sync2Jira", |
| 158 | + "Sync2Jira Documentation", |
| 159 | + author, |
| 160 | + "Sync2Jira", |
| 161 | + "One line description of project.", |
| 162 | + "Miscellaneous", |
| 163 | + ), |
165 | 164 | ] |
166 | 165 |
|
167 | 166 |
|
|
180 | 179 | # epub_uid = '' |
181 | 180 |
|
182 | 181 | # A list of files that should not be packed into the epub file. |
183 | | -epub_exclude_files = ['search.html'] |
| 182 | +epub_exclude_files = ["search.html"] |
184 | 183 |
|
185 | 184 |
|
186 | 185 | # -- Extension configuration ------------------------------------------------- |
0 commit comments