blob: 979a7098379c0aa87f20a24b9eda2d252bbfb540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
extensions = ['sphinx.ext.autodoc']
# The suffix of source filenames.
source_suffix = '.rst'
autodoc_mock_imports = [
'dummy'
]
nitpicky = True
|