87 |
87 |
88 # The master toctree document. |
88 # The master toctree document. |
89 master_doc = 'index' |
89 master_doc = 'index' |
90 |
90 |
91 # General information about the project. |
91 # General information about the project. |
92 project = 'PyAMS User Guide' |
92 project = 'PyAMS Documentation' |
93 copyright = '2018, Thierry Florac' |
93 copyright = '2018, Thierry Florac' |
94 author = 'Thierry Florac' |
94 author = 'Thierry Florac' |
95 |
95 |
96 # The version info for the project you're documenting, acts as replacement for |
96 # The version info for the project you're documenting, acts as replacement for |
97 # |version| and |release|, also used in various other places throughout the |
97 # |version| and |release|, also used in various other places throughout the |
173 |
173 |
174 # Grouping the document tree into LaTeX files. List of tuples |
174 # Grouping the document tree into LaTeX files. List of tuples |
175 # (source start file, target name, title, |
175 # (source start file, target name, title, |
176 # author, documentclass [howto, manual, or own class]). |
176 # author, documentclass [howto, manual, or own class]). |
177 latex_documents = [ |
177 latex_documents = [ |
178 (master_doc, 'PyAMSUserGuide.tex', 'PyAMS User Guide Documentation', |
178 (master_doc, 'PyAMSDocumentation.tex', 'PyAMS Documentation', |
179 'Thierry Florac', 'manual'), |
179 'Thierry Florac', 'manual'), |
180 ] |
180 ] |
181 |
181 |
182 |
182 |
183 # -- Options for manual page output --------------------------------------- |
183 # -- Options for manual page output --------------------------------------- |
184 |
184 |
185 # One entry per manual page. List of tuples |
185 # One entry per manual page. List of tuples |
186 # (source start file, name, description, authors, manual section). |
186 # (source start file, name, description, authors, manual section). |
187 man_pages = [ |
187 man_pages = [ |
188 (master_doc, 'pyamsuserguide', 'PyAMS User Guide Documentation', |
188 (master_doc, 'PyAMSDocumentation', 'PyAMS Documentation', |
189 [author], 1) |
189 [author], 1) |
190 ] |
190 ] |
191 |
191 |
192 |
192 |
193 # -- Options for Texinfo output ------------------------------------------- |
193 # -- Options for Texinfo output ------------------------------------------- |
194 |
194 |
195 # Grouping the document tree into Texinfo files. List of tuples |
195 # Grouping the document tree into Texinfo files. List of tuples |
196 # (source start file, target name, title, author, |
196 # (source start file, target name, title, author, |
197 # dir menu entry, description, category) |
197 # dir menu entry, description, category) |
198 texinfo_documents = [ |
198 texinfo_documents = [ |
199 (master_doc, 'PyAMSUserGuide', 'PyAMS User Guide Documentation', |
199 (master_doc, 'PyAMSDocumentation', 'PyAMS Documentation', |
200 author, 'PyAMSUserGuide', 'One line description of project.', |
200 author, 'PyAMSDocumentation', 'PyAMS a CMS based on Pyramid and Zope', |
201 'Miscellaneous'), |
201 'Miscellaneous'), |
202 ] |
202 ] |
203 |
203 |
204 |
204 |
205 |
205 |