blob: 8ba5366e643975c751e8f954024715b848b7fbe0 [file] [log] [blame]
Minos Galanakiscfeb8852021-06-30 17:10:59 +01001#-------------------------------------------------------------------------------
2# Copyright (c) 2021, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------#
7
8project = 'Static Checking Framework'
9html_show_copyright = False
10
11extensions = [
12 'sphinx.ext.autosectionlabel',
13]
14
15# Set up autosection with a maximum depth of 2
16autosectionlabel_prefix_document=True
17autosectionlabel_maxdepth=2
18
19# Set the theme
20html_theme = 'sphinx_rtd_theme'
21html_theme_options = {'collapse_navigation': False}
22
23# Set the README as the master document
24master_doc = 'README'
25