mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
9 lines
226 B
Python
9 lines
226 B
Python
|
from os import path
|
||
|
import sys
|
||
|
|
||
|
sys.path.insert(0, path.abspath(path.dirname(__file__)))
|
||
|
|
||
|
project = 'test project for doctest + autodoc reporting'
|
||
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
|
||
|
master_doc = 'index'
|