diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..e85a5b0 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,84 @@ +# -*- coding: utf-8 -*- + +from __future__ import division, print_function, unicode_literals + +import os +import sys + +import sphinx_rtd_theme +from recommonmark.parser import CommonMarkParser + +sys.path.insert(0, os.path.abspath('..')) +sys.path.append(os.path.dirname(__file__)) +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev") + +from django.conf import settings +from django.utils import timezone + +import django +django.setup() + + +sys.path.append(os.path.abspath('_ext')) +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.intersphinx', + 'sphinxcontrib.httpdomain', + 'djangodocs', + 'doc_extensions', +] +templates_path = ['_templates'] + +source_suffix = ['.rst', '.md'] +source_parsers = { + '.md': CommonMarkParser, +} + +master_doc = 'index' +project = u'Read the Docs' +copyright = '2010-{}, Read the Docs, Inc & contributors'.format( + timezone.now().year +) +version = '1.0' +release = '1.0' +exclude_patterns = ['_build'] +default_role = 'obj' +pygments_style = 'sphinx' +intersphinx_mapping = { + 'python': ('http://python.readthedocs.io/en/latest/', None), + 'django': ('http://django.readthedocs.io/en/1.8.x/', None), + 'sphinx': ('http://sphinx.readthedocs.io/en/latest/', None), +} +htmlhelp_basename = 'ReadTheDocsdoc' +latex_documents = [ + ('index', 'ReadTheDocs.tex', u'Read the Docs Documentation', + u'Eric Holscher, Charlie Leifer, Bobby Grace', 'manual'), +] +man_pages = [ + ('index', 'read-the-docs', u'Read the Docs Documentation', + [u'Eric Holscher, Charlie Leifer, Bobby Grace'], 1) +] + +exclude_patterns = [ + # 'api' # needed for ``make gettext`` to not die. +] + +language = 'en' + +locale_dirs = [ + 'locale/', +] +gettext_compact = False + +html_theme = 'sphinx_rtd_theme' +html_static_path = ['_static'] +html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +html_logo = 'img/logo.svg' +html_theme_options = { + 'logo_only': True, + 'display_version': False, +} + + +def setup(app): + app.add_stylesheet('custom.css') \ No newline at end of file