-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py
31 lines (26 loc) · 888 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
from __future__ import division, print_function, unicode_literals
from datetime import datetime
from recommonmark.parser import CommonMarkParser
def setup(app):
app.add_stylesheet('css/style.css')
extensions = ['sphinxcontrib.httpdomain']
templates_path = ['/home/docs/checkouts/readthedocs.org/readthedocs/templates/sphinx', 'templates', '_templates', '.templates']
source_suffix = ['.rst']
source_parsers = {
'.md': CommonMarkParser,
}
master_doc = 'back_index'
project = u'Liquidity SDK'
copyright = str(datetime.now().year)
version = 'latest'
release = 'latest'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
htmlhelp_basename = 'liquidity-sdk'
html_theme = 'sphinx_rtd_theme'
file_insertion_enabled = False
# latex_documents = [
# ('index', 'liquidity-sdk.tex', u'Liquidity SDK Documentation',
# u'', 'manual'),
# ]