-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.py
81 lines (66 loc) · 2.16 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
77
78
79
80
81
# -*- coding: utf-8 -*-
#
# MetaModels documentation build configuration file.
#
# This file is execfile()d with the current directory set to its
# containing dir.
import sys
import os
import sphinx_rtd_theme
from datetime import date
#sys.path.append(os.path.abspath('_ext/phpdomain'))
#sys.path.append(os.path.abspath('_ext/tk.phpautodoc/src'))
# -- General configuration ------------------------------------------------
extensions = [
'sphinx.ext.intersphinx',
#'sphinxcontrib-phpdomain',
#'sphinxcontrib_phpautodoc',
]
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'MetaModels'
#copyright = u'{:d}, <a href="https://now.metamodel.me/de/ueber-uns/team" title="Team MetaModels" target="_blank">Team MetaModels</a>'.format(date.today().year)
copyright = u'{:d}, Team MetaModels'.format(date.today().year)
version = '2.0'
release = '2.0.0'
language = 'en'
exclude_patterns = ['_build', '_ext']
pygments_style = 'sphinx'
# -- Options for HTML output ----------------------------------------------
html_theme = 'sphinx_rtd_theme'
html_theme_path = ['_themes', ]
# html_static_path = []
html_use_modindex = False
htmlhelp_basename = 'MetaModelsdoc'
html_favicon = '_img/favicon.ico'
html_last_updated_fmt = '%m-%d-%Y'
html_show_sphinx = False
html_show_copyright = True
html_css_files = [
'style.css',
]
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
'papersize': 'a4paper',
'pointsize': '10pt',
'classoptions': ',openany,oneside',
}
latex_documents = [
('index', 'MetaModels.tex', u'MetaModels Documentation',
u'Team MetaModels', 'manual'),
]
# -- Options for manual page output ---------------------------------------
man_pages = [
('index', 'metamodels', u'MetaModels Documentation',
[u'Team MetaModels'], 1)
]
# -- Options for Texinfo output -------------------------------------------
texinfo_documents = [
('index', 'MetaModels', u'MetaModels Documentation',
u'Team MetaModels', 'MetaModels', 'One line description of project.',
'Miscellaneous'),
]
intersphinx_mapping = {
'dcgeneral': ('http://contao-community-alliance.github.io/dc-general-docs/', None)
}