sphinx/tests/roots/test-ext-autosummary-filename-map/conf.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
275 B
Python
Raw Normal View History

2020-07-08 07:36:40 -05:00
import sys
from pathlib import Path
2020-07-08 07:36:40 -05:00
sys.path.insert(0, str(Path.cwd().resolve()))
2020-07-08 07:36:40 -05:00
extensions = ['sphinx.ext.autosummary']
autosummary_generate = True
2020-07-09 20:30:06 -05:00
autosummary_filename_map = {
"autosummary_dummy_module": "module_mangled",
"autosummary_dummy_module.bar": "bar"
}