Joey Armstrong | 0c517b5 | 2023-07-07 17:29:54 -0400 | [diff] [blame] | 1 | # -*- 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. |
| 10 | exclude_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] |