summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autosummary-filename-map/conf.py
blob: 17e2fa44565309edc71d2fb729ed7f5afe0e2f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
import os
import sys

sys.path.insert(0, os.path.abspath('.'))

extensions = ['sphinx.ext.autosummary']
autosummary_generate = True
autosummary_filename_map = {
    "autosummary_dummy_module": "module_mangled",
    "autosummary_dummy_module.bar": "bar"
}