-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
36 lines (27 loc) · 884 Bytes
/
conf.py
File metadata and controls
36 lines (27 loc) · 884 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
26
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
import sys, os
sys.path.insert(0, os.path.abspath('.'))
#needs_sphinx = '1.0'
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'FoolFuuka'
copyright = u'2012-2015, FoolCode'
version = '2.1.0'
release = version
exclude_patterns = ['_build', 'examples', 'html', 'doctrees']
add_function_parentheses = True
add_module_names = True
show_authors = False
pygments_style = 'sphinx'
modindex_common_prefix = ['foolfuuka']
html_theme = 'default'
html_static_path = ['_static']
htmlhelp_basename = 'FoolFuukaDoc'
from sphinx.highlighting import lexers
from pygments.lexers.web import JsonLexer
from pygments.lexers.web import PhpLexer
lexers['json'] = JsonLexer(startinline=True)
lexers['php'] = PhpLexer(startinline=True)