generated from GISMentors/workshop-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.py
66 lines (50 loc) · 1.98 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
# -*- 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'GDAL školení GISMentors'
copyright = u'2016-%d GISMentors' % 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 = '0.1'
# The full version, including alpha/beta/rc tags.
release = '%sbeta' % version
# -- Options for HTML output ----------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'skoleni-gdal'
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
html_title = project
# -- Options for LaTeX output ---------------------------------------------
# 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'),
]
from conf_base import *
todo_include_todos = False
html_use_index = True