-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathconf.py
More file actions
25 lines (24 loc) · 825 Bytes
/
Copy pathconf.py
File metadata and controls
25 lines (24 loc) · 825 Bytes
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
# -*- coding: utf-8 -*-
import sys, os
from sphinx.highlighting import lexers
from pygments.lexers.web import PhpLexer
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.imgmath', 'sphinx.ext.ifconfig', 'sensio.sphinx.configurationblock']
source_suffix = '.rst'
master_doc = 'index'
project = 'Open Loyalty'
copyright = u'2011-2017, Divante Ltd'
version = ''
release = ''
html_logo = "_images/logo.png"
html_theme = 'ol_rtd_theme'
html_theme_path = ["_themes"]
htmlhelp_basename = 'Openloyaltydocs'
man_pages = [
('index', 'open-loyalty', u'Open Loyalty Documentation',
[u'Divante Ltd'], 1)
]
sys.path.append(os.path.abspath('_exts'))
lexers['php'] = PhpLexer(startinline=True)
lexers['php-annotations'] = PhpLexer(startinline=True)
rst_epilog = """
"""