-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconf.py
More file actions
70 lines (53 loc) · 1.86 KB
/
conf.py
File metadata and controls
70 lines (53 loc) · 1.86 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8 -*-
#
# Semi-Automatic Classification Plugin documentation build configuration file
project = u'Semi-Automatic Classification Plugin'
copyright = u'2012-2026, Luca Congedo'
author = 'Luca Congedo'
version = '9.0'
release = '9.0.0.1'
extensions = ['sphinx.ext.mathjax', 'sphinx.ext.ifconfig']
templates_path = ['_templates']
source_suffix = '.rst'
source_encoding = 'utf-8-sig'
master_doc = 'index'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
locale_dirs = ['locale/']
gettext_compact = False
# -- Options for HTML output ----------------------------------------------
html_theme = 'bizstyle'
html_favicon = "_static/favicon.ico"
html_static_path = ['_static']
html_domain_indices = False
html_use_index = False
html_show_sphinx = False
htmlhelp_basename = 'Semi-AutomaticClassificationPlugin_doc'
html_css_files = ['html_css.css']
#html_theme_options = {
# 'prev_next_buttons_location': 'both',
#}
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {'papersize': 'a4paper'}
latex_documents = [
('index', 'Semi-AutomaticClassificationPlugin.tex',
u'Semi-Automatic Classification Plugin Documentation',
u'Luca Congedo', 'manual'),
]
latex_logo = '_static/logo.png'
latex_use_parts = True
latex_show_pagerefs = True
# -- Options for manual page output ---------------------------------------
man_pages = [
('index', 'semiautomaticclassificationplugin',
u'Semi-Automatic Classification Plugin Documentation',
[u'Luca Congedo'], 1)
]
# -- Options for Texinfo output -------------------------------------------
texinfo_documents = [
('index', 'Semi-AutomaticClassificationPlugin',
u'Semi-Automatic Classification Plugin Documentation',
u'Luca Congedo', 'Semi-AutomaticClassificationPlugin',
'A plugin for semi-automatic supervised classifications,',
'GIS and Remote Sensing'),
]