blob: 82bf7c71a45ff20f6f28f9eec2bde64b787e42aa [file] [log] [blame]
Joey Armstrong0c517b52023-07-07 17:29:54 -04001# -*- coding: utf-8 -*-
2#
3# Configuration file for the Sphinx documentation builder.
4#
5# -----------------------------------------------------------------------
6
7# List of patterns, relative to source directory, that match files and
8# directories to ignore when looking for source files.
9# This pattern also affects html_static_path and html_extra_path.
10exclude_patterns = [
11 '*/LICENSE.md',
12 '*/RELEASE_NOTES.md',
13 '*/vendor',
14 '.DS_Store',
15 'Thumbs.db',
16 '_build',
17 'voltha-go/BUILD.md',
18 'cord-tester/venv_cord',
19 'cord-tester/docs',
20 'cord-tester/src',
21 'cord-tester/README.md',
22 'cord-tester/cord-robot/README.rst',
23 'openolt/agent/*',
24 'repos',
25 'requirements.txt',
26 'bbsim/README.md',
27 'CODE_OF_CONDUCT.md',
28 '*/CODE_OF_CONDUCT.md',
29
30 # Ignore all:
31 'makefiles',
32 '__pycache__',
33 '**/__pycache__', # generated - faster traversal
34 '.venv',
35 '**/.venv', # external virtual env
36
37 # Revisit: one directory pattern is sufficient.
38 # makefiles/virtualenv.mk normalizes all of this
39 '**/doc_venv',
40 '**/venv_docs',
41 '**/virtualenv',
42 '**/vst_venv',
43]
44
45# [EOF]