-
Notifications
You must be signed in to change notification settings - Fork 23
/
conf.py
51 lines (34 loc) · 1.19 KB
/
conf.py
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
# -*- coding: utf-8 -*-
extensions = []
templates_path = ['_templates']
source_suffix = ['.rst']
master_doc = 'index'
project = u'Definitive Guide to Jython'
copyright = u'2010, 2019'
version = 'latest'
release = 'latest'
# Add any Sphinx extension module names here, as strings.
extensions = [
'sphinx.ext.intersphinx',
]
exclude_patterns = ['_build','sandbox']
pygments_style = 'sphinx'
# -- Options for HTML output -------------------------------------------------
html_theme = 'sphinx_rtd_theme'
file_insertion_enabled = False
# -- Options for HTMLHelp output ---------------------------------------------
htmlhelp_basename = 'jython'
# -- Options for LaTeX output ------------------------------------------------
# LaTeX is intermediate to the PDF output
latex_documents = [
# (startdocname, targetname, title, author, documentclass, toctree_only)
( 'index', 'jython.tex',
u'The Definitive Guide to Jython',
u'Josh Juneau, Jim Baker, Victor Ng, Leo Soto, Frank Wierzbicki',
'manual',
False),
]
# -- Options for intersphinx extension ---------------------------------------
intersphinx_mapping = {
'python' : ('https://docs.python.org/2', None),
}