diff --git a/readthedocs/templates/sphinx/conf.py.conf b/readthedocs/templates/sphinx/conf.py.conf new file mode 100644 index 00000000000..81c880bd511 --- /dev/null +++ b/readthedocs/templates/sphinx/conf.py.conf @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +import sys, os +extensions = [] +templates_path = ['{{ template_dir }}', 'templates', '_templates', '.templates'] +source_suffix = '{{ project.suffix }}' +master_doc = 'index' +project = u'{{ project.name }}' +copyright = u'{{ project.copyright }}' +version = '{{ version.verbose_name }}' +release = '{{ version.verbose_name }}' +exclude_patterns = ['_build'] +pygments_style = 'sphinx' +htmlhelp_basename = '{{ project.slug }}' +file_insertion_enabled = False +latex_documents = [ + ('index', '{{ project.slug }}.tex', u'{{ project.name }} Documentation', + u'{{ project.copyright }}', 'manual'), +]