|
needs_sphinx = '1.1' |
|
|
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.pngmath', 'numpydoc', |
|
'sphinx.ext.intersphinx', 'sphinx.ext.coverage', |
|
'sphinx.ext.autosummary', 'matplotlib.sphinxext.plot_directive'] |
|
|
|
templates_path = ['_templates'] |
|
source_suffix = '.rst' |
|
master_doc = 'index' |
|
project = u'scipy-sphinx-theme' |
|
copyright = u'2013, Surya Kasturi and Pauli Virtanen' |
|
version = '0.1' |
|
release = '0.1' |
|
exclude_patterns = ['_build'] |
|
pygments_style = 'sphinx' |
|
|
|
|
|
|
|
html_theme = 'scipy' |
|
html_theme_path = ['_theme'] |
|
|
|
html_static_path = ['_static'] |
|
html_theme_options = { |
|
"edit_link": "true", |
|
"sidebar": "right", |
|
"scipy_org_logo": "true", |
|
"rootlinks": [("http://scipy.org/", "Scipy.org"), |
|
("http://docs.scipy.org/", "Docs")] |
|
} |
|
|
|
pngmath_latex_preamble = r""" |
|
\usepackage{color} |
|
\definecolor{textgray}{RGB}{51,51,51} |
|
\color{textgray} |
|
""" |
|
pngmath_use_preview = True |
|
pngmath_dvipng_args = ['-gamma 1.5', '-D 96', '-bg Transparent'] |
|
|
|
|
|
|
|
|
|
|
|
plot_pre_code = """ |
|
import numpy as np |
|
import scipy as sp |
|
np.random.seed(123) |
|
""" |
|
plot_include_source = True |
|
plot_formats = [('png', 96), 'pdf'] |
|
plot_html_show_formats = False |
|
|
|
import math |
|
phi = (math.sqrt(5) + 1)/2 |
|
|
|
font_size = 13*72/96.0 |
|
|
|
plot_rcparams = { |
|
'font.size': font_size, |
|
'axes.titlesize': font_size, |
|
'axes.labelsize': font_size, |
|
'xtick.labelsize': font_size, |
|
'ytick.labelsize': font_size, |
|
'legend.fontsize': font_size, |
|
'figure.figsize': (3*phi, 3), |
|
'figure.subplot.bottom': 0.2, |
|
'figure.subplot.left': 0.2, |
|
'figure.subplot.right': 0.9, |
|
'figure.subplot.top': 0.85, |
|
'figure.subplot.wspace': 0.4, |
|
'text.usetex': False, |
|
} |
|
|