Files
sphinx/tests/roots/test-warnings/conf.py
2016-07-14 23:12:57 +09:00

13 lines
231 B
Python

# -*- coding: utf-8 -*-
import os
import sys
sys.path.append(os.path.abspath('.'))
master_doc = 'index'
extensions = ['sphinx.ext.autodoc']
latex_documents = [
(master_doc, 'test.tex', 'test-warnings', 'Sphinx', 'report')
]