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