-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.py
43 lines (37 loc) · 1.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
import sphinx_bootstrap_theme
# Basic project info
project = u'Django Deployment Using Salt'
copyright = u'Nick Lang, et al.'
version = '0.1'
release = '0.1'
# Build options
templates_path = ['_templates']
exclude_patterns = ['_build', 'README.rst']
source_suffix = '.rst'
master_doc = 'index'
# HTML options
html_theme = 'bootstrap'
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
#html_theme_path = ['themes']
html_static_path = ['_static']
pygments_style = 'sphinx'
html_use_index = False # FIXME once proper index directives are added.
html_show_sourcelink = False
html_show_sphinx = False
html_title = "Django Deployment Using Salt"
html_add_permalinks = False # FIXME once styles are fixed to get the hover back.
# LATEX builder
latex_documents = [
('index', 'DjangoDeploymentUsingSalt.tex', u'Django Deployment Using Salt',
u'Nick Lang, et al.', 'manual'),
]
# texinfo builder
texinfo_documents = [
('index', 'DjangoDeploymentUsingSalt.tex', u'Django Deployment Using Salt',
u'Nick Lang, et al.', 'manual'),
]
# ePub builder
epub_title = u'Django Deployment Using Salt'
epub_author = u'Nick Lang, et al.'
epub_publisher = u'Nick Lang, et al.'
epub_copyright = u'Nick Lang, et al.'