-
Notifications
You must be signed in to change notification settings - Fork 6
/
conf.py
76 lines (58 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
import sys
import os
sys.path.insert(0, os.path.join('..', 'sphinx-template'))
from utils import get_month_year, get_year
# -- General configuration ------------------------------------------------
# General information about the project.
project = u'Jena GRASS GIS Workshop'
copyright = u'2018-%d Martin Landa and GISMentors.eu' % get_year()
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '%s' % version
# -- Options for HTML output ----------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'grass-gis-workshop-jena'
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
html_title = project
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# Additional stuff for the LaTeX preamble.
'preamble': "".join([]),
'releasename': u'version',
'date': '%s %s' % get_month_year(),
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', '%s-%s.tex' % (htmlhelp_basename, version), project,
u'GISMentors', u'manual'),
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', htmlhelp_basename, project,
[copyright], 1)
]
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', htmlhelp_basename, project,
copyright, htmlhelp_basename, project,
'Miscellaneous'),
]
html_favicon = "images/favicon.ico"
from conf_base import *
todo_include_todos = True
html_use_index = False
language = 'en'