|
23 | 23 | copyright = u"""2014, Sandia Corporation. Under the terms of Contract
|
24 | 24 | DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain
|
25 | 25 | rights in this software"""
|
26 |
| -author = 'Timothy M. Shead' |
| 26 | +author = "Timothy M. Shead" |
27 | 27 |
|
28 | 28 | # The full version, including alpha/beta/rc tags
|
29 | 29 | import toyplot
|
|
48 | 48 | "sphinx_rtd_theme",
|
49 | 49 | ]
|
50 | 50 |
|
51 |
| -#napoleon_use_param = False |
52 |
| - |
53 | 51 | intersphinx_mapping = {
|
54 | 52 | "arrow": ("http://arrow.readthedocs.io/en/latest", "arrow.inv"),
|
55 | 53 | "numpy": ("http://docs.scipy.org/doc/numpy-1.13.0", "numpy.inv"),
|
|
58 | 56 | "PIL": ("http://pillow.readthedocs.io/en/3.2.x", "pillow.inv"),
|
59 | 57 | }
|
60 | 58 |
|
| 59 | +tls_verify = False |
| 60 | + |
61 | 61 | # Add any paths that contain templates here, relative to this directory.
|
62 |
| -templates_path = ['_templates'] |
| 62 | +templates_path = ["_templates"] |
63 | 63 |
|
64 | 64 | # The master toctree document.
|
65 | 65 | master_doc = "index"
|
66 | 66 |
|
67 | 67 | # List of patterns, relative to source directory, that match files and
|
68 | 68 | # directories to ignore when looking for source files.
|
69 | 69 | # This pattern also affects html_static_path and html_extra_path.
|
70 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 70 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
71 | 71 |
|
72 | 72 |
|
73 | 73 | # -- nbsphinx options --------------------------------------------------------
|
74 | 74 |
|
75 |
| -nbsphinx_execute = "never" if "READTHEDOCS" in os.environ else "always" |
| 75 | +nbsphinx_execute = "never" |
76 | 76 |
|
77 | 77 | nbsphinx_prolog = """
|
78 | 78 | .. raw:: html
|
|
90 | 90 |
|
91 | 91 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
92 | 92 | # a list of builtin themes.
|
93 |
| -# |
94 |
| -html_theme = 'sphinx_rtd_theme' |
| 93 | + |
| 94 | +html_theme = "sphinx_rtd_theme" |
95 | 95 |
|
96 | 96 | # Add any paths that contain custom static files (such as style sheets) here,
|
97 | 97 | # relative to this directory. They are copied after the builtin static files,
|
98 | 98 | # so a file named "default.css" will overwrite the builtin "default.css".
|
99 |
| -#html_static_path = ['_static'] |
| 99 | +#html_static_path = ["_static"] |
100 | 100 |
|
101 | 101 | def warn_undocumented_members(app, what, name, obj, options, lines):
|
102 | 102 | if what not in [] and len(lines) == 0:
|
|
0 commit comments