|
15 | 15 | # Incase the project was not installed |
16 | 16 | import os |
17 | 17 | import sys |
18 | | -sys.path.insert(0, os.path.abspath('..')) |
19 | 18 |
|
| 19 | +sys.path.insert(0, os.path.abspath("..")) |
20 | 20 |
|
21 | 21 |
|
22 | 22 | # -- Project information ----------------------------------------------------- |
23 | 23 |
|
24 | | -project = 'openmmdl' |
25 | | -copyright = ("2022, Valerij Talagayev, Yu Chen, Niklas Piet Doering & Leon Obendorf. Project structure based on the " |
26 | | - "Computational Molecular Science Python Cookiecutter version 1.1") |
27 | | -author = 'Valerij Talagayev & Yu Chen' |
| 24 | +project = "openmmdl" |
| 25 | +copyright = ( |
| 26 | + "2022, Valerij Talagayev, Yu Chen, Niklas Piet Doering & Leon Obendorf. Project structure based on the " |
| 27 | + "Computational Molecular Science Python Cookiecutter version 1.1" |
| 28 | +) |
| 29 | +author = "Valerij Talagayev & Yu Chen" |
28 | 30 |
|
29 | 31 | # The short X.Y version |
30 | | -version = '' |
| 32 | +version = "" |
31 | 33 | # The full version, including alpha/beta/rc tags |
32 | | -release = '' |
| 34 | +release = "" |
33 | 35 |
|
34 | 36 |
|
35 | 37 | # -- General configuration --------------------------------------------------- |
|
58 | 60 | napoleon_use_ivar = True |
59 | 61 |
|
60 | 62 | # Add any paths that contain templates here, relative to this directory. |
61 | | -templates_path = ['_templates'] |
| 63 | +templates_path = ["_templates"] |
62 | 64 |
|
63 | 65 | # The suffix(es) of source filenames. |
64 | 66 | # You can specify multiple suffix as a list of string: |
65 | 67 | # |
66 | 68 | # source_suffix = ['.rst', '.md'] |
67 | | -source_suffix = '.rst' |
| 69 | +source_suffix = ".rst" |
68 | 70 |
|
69 | 71 | # The master toctree document. |
70 | | -master_doc = 'index' |
| 72 | +master_doc = "index" |
71 | 73 |
|
72 | 74 | # The language for content autogenerated by Sphinx. Refer to documentation |
73 | 75 | # for a list of supported languages. |
|
79 | 81 | # List of patterns, relative to source directory, that match files and |
80 | 82 | # directories to ignore when looking for source files. |
81 | 83 | # This pattern also affects html_static_path and html_extra_path . |
82 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 84 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
83 | 85 |
|
84 | 86 | # The name of the Pygments (syntax highlighting) style to use. |
85 | | -pygments_style = 'default' |
| 87 | +pygments_style = "default" |
86 | 88 |
|
87 | 89 |
|
88 | 90 | # -- Options for HTML output ------------------------------------------------- |
89 | 91 |
|
90 | 92 | # The theme to use for HTML and HTML Help pages. See the documentation for |
91 | 93 | # a list of builtin themes. |
92 | 94 | # |
93 | | -html_theme = 'renku' |
| 95 | +html_theme = "renku" |
94 | 96 |
|
95 | 97 | # Theme options are theme-specific and customize the look and feel of a theme |
96 | 98 | # further. For a list of options available for each theme, see the |
|
101 | 103 | # Add any paths that contain custom static files (such as style sheets) here, |
102 | 104 | # relative to this directory. They are copied after the builtin static files, |
103 | 105 | # so a file named "default.css" will overwrite the builtin "default.css". |
104 | | -html_static_path = ['_static'] |
| 106 | +html_static_path = ["_static"] |
105 | 107 |
|
106 | 108 | # Custom sidebar templates, must be a dictionary that maps document names |
107 | 109 | # to template names. |
|
117 | 119 | # -- Options for HTMLHelp output --------------------------------------------- |
118 | 120 |
|
119 | 121 | # Output file base name for HTML help builder. |
120 | | -htmlhelp_basename = 'openmmdldoc' |
| 122 | +htmlhelp_basename = "openmmdldoc" |
121 | 123 |
|
122 | 124 |
|
123 | 125 | # -- Options for LaTeX output ------------------------------------------------ |
|
126 | 128 | # The paper size ('letterpaper' or 'a4paper'). |
127 | 129 | # |
128 | 130 | # 'papersize': 'letterpaper', |
129 | | - |
130 | 131 | # The font size ('10pt', '11pt' or '12pt'). |
131 | 132 | # |
132 | 133 | # 'pointsize': '10pt', |
133 | | - |
134 | 134 | # Additional stuff for the LaTeX preamble. |
135 | 135 | # |
136 | 136 | # 'preamble': '', |
137 | | - |
138 | 137 | # Latex figure (float) alignment |
139 | 138 | # |
140 | 139 | # 'figure_align': 'htbp', |
|
144 | 143 | # (source start file, target name, title, |
145 | 144 | # author, documentclass [howto, manual, or own class]). |
146 | 145 | latex_documents = [ |
147 | | - (master_doc, 'openmmdl.tex', 'openmmdl Documentation', |
148 | | - 'openmmdl', 'manual'), |
| 146 | + (master_doc, "openmmdl.tex", "openmmdl Documentation", "openmmdl", "manual"), |
149 | 147 | ] |
150 | 148 |
|
151 | 149 |
|
152 | 150 | # -- Options for manual page output ------------------------------------------ |
153 | 151 |
|
154 | 152 | # One entry per manual page. List of tuples |
155 | 153 | # (source start file, name, description, authors, manual section). |
156 | | -man_pages = [ |
157 | | - (master_doc, 'openmmdl', 'openmmdl Documentation', |
158 | | - [author], 1) |
159 | | -] |
| 154 | +man_pages = [(master_doc, "openmmdl", "openmmdl Documentation", [author], 1)] |
160 | 155 |
|
161 | 156 |
|
162 | 157 | # -- Options for Texinfo output ---------------------------------------------- |
|
165 | 160 | # (source start file, target name, title, author, |
166 | 161 | # dir menu entry, description, category) |
167 | 162 | texinfo_documents = [ |
168 | | - (master_doc, 'openmmdl', 'openmmdl Documentation', |
169 | | - author, 'openmmdl', 'Preparation and Simulation of protein-ligand complexes', |
170 | | - 'Miscellaneous'), |
| 163 | + ( |
| 164 | + master_doc, |
| 165 | + "openmmdl", |
| 166 | + "openmmdl Documentation", |
| 167 | + author, |
| 168 | + "openmmdl", |
| 169 | + "Preparation and Simulation of protein-ligand complexes", |
| 170 | + "Miscellaneous", |
| 171 | + ), |
171 | 172 | ] |
172 | 173 |
|
173 | 174 |
|
|
0 commit comments