test-builds

GitHub repository to test different Read the Docs builds scenarios.


Sphinx configuration file used to build this docs (see full file),

 1# -*- coding: utf-8 -*-
 2
 3from __future__ import division, print_function, unicode_literals
 4
 5from datetime import datetime
 6
 7from recommonmark.parser import CommonMarkParser
 8
 9extensions = []
10templates_path = ['templates', '_templates', '.templates']
11source_suffix = ['.rst', '.md']
12source_parsers = {
13            '.md': CommonMarkParser,
14        }
15master_doc = 'index'
16project = u'another-test-stsewd'
17copyright = str(datetime.now().year)
18version = 'no-conf-py'
19release = 'no-conf-py'
20exclude_patterns = ['_build']
21pygments_style = 'sphinx'
22htmlhelp_basename = 'another-test-stsewd'
23html_theme = 'sphinx_rtd_theme'
24file_insertion_enabled = False
25latex_documents = [
26  ('index', 'another-test-stsewd.tex', u'another-test-stsewd Documentation',
27   u'', 'manual'),
28]
29
30
31
32