File: conf.py

package info (click to toggle)
wxmplot 0.9.58-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,052 kB
  • sloc: python: 10,085; makefile: 88; sh: 2
file content (54 lines) | stat: -rw-r--r-- 1,484 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# wxmplot documentation build configuration file
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.

import os
import sys
from datetime import date

from packaging.version import parse as version_parse

import wxmplot

project = 'wxmplot'
copyright = f'{date.today()}, Matthew Newville, The University of Chicago'

release = version_parse(wxmplot.__version__).public

html_title = "WXMPLOT: interactive plotting with Python"
html_short_title = "WXMPLOT: wxPython+matplotlib"

# sys.path.append(os.path.abspath(os.path.join('.')))
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.mathjax',
              'sphinx.ext.napoleon']

autoclass_content = 'both'
templates_path = ['_templates']
source_suffix = {'.rst': 'restructuredtext'}
master_doc = 'index'

exclude_trees = ['_build']
default_role = None

add_function_parentheses = True
add_module_names = False
pygments_style = 'sphinx'

html_theme_path = ['sphinx_theme']
html_theme = 'bizstyle'


html_static_path = ['_static']
html_sidebars = {'index': ['indexsidebar.html', 'searchbox.html']}
html_domain_indices = False
html_use_index = True
html_show_sourcelink = True

latex_documents = [('index', 'wxmplot.tex', 'wxmplot documentation',
                    'Matthew Newville', 'manual')]

mathjax_path = 'file:///usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML'