-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.py
33 lines (26 loc) · 904 Bytes
/
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
# -*- coding: utf-8 -*-
#
# ASL documentation build configuration file
# -- General configuration ------------------------------------------------
extensions = []
templates_path = ['_templates']
# General information about the project.
project = u'BASIL documentation'
copyright = u'2017, University of Oxford'
author = u'Michael Chappel, Martin Craig'
master_doc = 'index'
version = u''
release = u''
source_suffix = ['.rst',]
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# -- Options for HTML output ----------------------------------------------
try:
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
except ImportError:
html_theme = 'alabaster'
# -- Options for LaTeX output ---------------------------------------------
latex_documents = [
(master_doc, 'basil.tex', project, author, 'manual'),
]