|
18 | 18 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
19 | 19 | #sys.path.insert(0, os.path.abspath('.')) |
20 | 20 |
|
| 21 | + |
| 22 | + |
| 23 | + |
21 | 24 | # -- General configuration ----------------------------------------------------- |
22 | 25 |
|
23 | 26 | # If your documentation needs a minimal Sphinx version, state it here. |
24 | 27 | #needs_sphinx = '1.0' |
25 | 28 |
|
26 | 29 | # Add any Sphinx extension module names here, as strings. They can be extensions |
27 | 30 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
28 | | -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax'] |
| 31 | +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.intersphinx'] |
| 32 | + |
| 33 | +intersphinx_cache_limit = 10 #days to keep cached inventories |
| 34 | +intersphinx_mapping = {'python': ('https://docs.python.org/2.7', None), |
| 35 | + 'polyadcirc' : ('http://ut-chg.github.io/PolyADCIRC', None), |
| 36 | + 'matplotlib':('http://matplotlib.sourceforge.net', |
| 37 | + None), |
| 38 | + 'numpy':('http://docs.scipy.org/doc/numpy',None), |
| 39 | + 'np':('http://docs.scipy.org/doc/numpy',None), |
| 40 | + 'scipy':('http://docs.scipy.org/doc/scipy',None) |
| 41 | + } |
| 42 | + |
| 43 | +todo_include_todos = True |
29 | 44 |
|
30 | 45 | # Add any paths that contain templates here, relative to this directory. |
31 | 46 | templates_path = ['_templates'] |
|
40 | 55 | master_doc = 'index' |
41 | 56 |
|
42 | 57 | # General information about the project. |
43 | | -project = u'PolySim' |
| 58 | +project = u'PolyADCIRC' |
44 | 59 | copyright = u'2013, Lindley Graham' |
45 | 60 |
|
46 | 61 | # The version info for the project you're documenting, acts as replacement for |
47 | 62 | # |version| and |release|, also used in various other places throughout the |
48 | 63 | # built documents. |
49 | 64 | # |
50 | 65 | # The short X.Y version. |
51 | | -version = '0.1.0' |
| 66 | +version = '0.3' |
52 | 67 | # The full version, including alpha/beta/rc tags. |
53 | | -release = '0.1' |
| 68 | +release = '0.3.0' |
54 | 69 |
|
55 | 70 | # The language for content autogenerated by Sphinx. Refer to documentation |
56 | 71 | # for a list of supported languages. |
|
96 | 111 |
|
97 | 112 | # The theme to use for HTML and HTML Help pages. See the documentation for |
98 | 113 | # a list of builtin themes. |
99 | | -html_theme = 'default' |
| 114 | +html_theme = 'sphinx_rtd_theme' |
100 | 115 |
|
101 | 116 | # Theme options are theme-specific and customize the look and feel of a theme |
102 | 117 | # further. For a list of options available for each theme, see the |
|
129 | 144 |
|
130 | 145 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
131 | 146 | # using the given strftime format. |
132 | | -#html_last_updated_fmt = '%b %d, %Y' |
| 147 | +html_last_updated_fmt = '%b %d, %Y' |
133 | 148 |
|
134 | 149 | # If true, SmartyPants will be used to convert quotes and dashes to |
135 | 150 | # typographically correct entities. |
|
169 | 184 | #html_file_suffix = None |
170 | 185 |
|
171 | 186 | # Output file base name for HTML help builder. |
172 | | -htmlhelp_basename = 'PolySimdoc' |
| 187 | +htmlhelp_basename = 'PolyADCIRCdoc' |
173 | 188 |
|
174 | 189 |
|
175 | 190 | # -- Options for LaTeX output -------------------------------------------------- |
|
188 | 203 | # Grouping the document tree into LaTeX files. List of tuples |
189 | 204 | # (source start file, target name, title, author, documentclass [howto/manual]). |
190 | 205 | latex_documents = [ |
191 | | - ('index', 'PolySim.tex', u'PolySim Documentation', |
| 206 | + ('index', 'PolyADCIRC.tex', u'PolyADCIRC Documentation', |
192 | 207 | u'Lindley Graham', 'manual'), |
193 | 208 | ] |
194 | 209 |
|
|
218 | 233 | # One entry per manual page. List of tuples |
219 | 234 | # (source start file, name, description, authors, manual section). |
220 | 235 | man_pages = [ |
221 | | - ('index', 'polysim', u'PolySim Documentation', |
| 236 | + ('index', 'polyadcirc', u'PolyADCIRC Documentation', |
222 | 237 | [u'Lindley Graham'], 1) |
223 | 238 | ] |
224 | 239 |
|
|
232 | 247 | # (source start file, target name, title, author, |
233 | 248 | # dir menu entry, description, category) |
234 | 249 | texinfo_documents = [ |
235 | | - ('index', 'PolySim', u'PolySim Documentation', |
236 | | - u'Lindley Graham', 'PolySim', 'One line description of project.', |
| 250 | + ('index', 'PolyADCIRC', u'PolyADCIRC Documentation', |
| 251 | + u'Lindley Graham', 'PolyADCIRC', 'Python batch ADCIRC interface.', |
237 | 252 | 'Miscellaneous'), |
238 | 253 | ] |
239 | 254 |
|
|
0 commit comments