13
13
import os
14
14
import sys
15
15
16
- #Include root directory of project
16
+ # Include root directory of project
17
17
sys .path .insert (0 , os .path .abspath (os .path .join (os .path .dirname (__file__ ), "../.." )))
18
18
19
19
20
20
# -- Project information -----------------------------------------------------
21
21
22
- project = ' Causal Testing'
23
- copyright = ' 2021, Andrew Clark, Michael Foster, Neil Walkinshaw, Rob Hierons, Bob Turner'
24
- author = ' Andrew Clark, Michael Foster, Neil Walkinshaw, Rob Hierons, Bob Turner'
22
+ project = " Causal Testing"
23
+ copyright = " 2021, Andrew Clark, Michael Foster, Neil Walkinshaw, Rob Hierons, Bob Turner"
24
+ author = " Andrew Clark, Michael Foster, Neil Walkinshaw, Rob Hierons, Bob Turner"
25
25
26
26
27
27
# -- General configuration ---------------------------------------------------
28
28
29
29
# Add any Sphinx extension module names here, as strings. They can be
30
30
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
31
31
# ones.
32
- extensions = [
33
- 'autoapi.extension' ,
34
- 'sphinx.ext.autosectionlabel'
35
- ]
32
+ extensions = ["autoapi.extension" , "myst_parser" , "sphinx.ext.autosectionlabel" ]
36
33
37
34
# Add any paths that contain templates here, relative to this directory.
38
- templates_path = [' _templates' ]
35
+ templates_path = [" _templates" ]
39
36
40
37
# List of patterns, relative to source directory, that match files and
41
38
# directories to ignore when looking for source files.
47
44
# The theme to use for HTML and HTML Help pages. See the documentation for
48
45
# a list of builtin themes.
49
46
#
50
- html_theme = ' sphinx_rtd_theme'
47
+ html_theme = " sphinx_rtd_theme"
51
48
52
49
# Add any paths that contain custom static files (such as style sheets) here,
53
50
# relative to this directory. They are copied after the builtin static files,
54
51
# so a file named "default.css" will overwrite the builtin "default.css".
55
- #html_static_path = ['_static']
52
+ # html_static_path = ['_static']
56
53
57
- #Path to generate documentation from using sphinx AutoAPI
58
- autoapi_dirs = [os .path .abspath (os .path .join ('..' , '..' , ' causal_testing' ))]
54
+ # Path to generate documentation from using sphinx AutoAPI
55
+ autoapi_dirs = [os .path .abspath (os .path .join (".." , ".." , " causal_testing" ))]
0 commit comments