blob: bf3d6b1e2b7299542a464438de0227a8b30a43de (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
import subprocess
subprocess.call('cd ../../ && doxygen', shell=True)
html_theme = 'sphinx_rtd_theme'
extensions = [
'breathe',
'sphinx.ext.todo',
]
breathe_projects = {'extfs': os.path.abspath('../../build/xml') }
breathe_default_project = 'extfs'
source_suffix = '.rst'
master_doc = 'index'
project = 'extfs'
copyright = '2016, Felix Morgner'
author = 'Felix Morgner'
version = '1.0.0'
release = '1.0.0'
language = 'en'
exclude_patterns = [
'build',
'Thumbs.db',
'.DS_Store',
'ext/breathe',
]
pygments_style = 'sphinx'
todo_include_todos = True
htmlhelp_basename = 'extfsdoc'
man_pages = [
(master_doc, 'extfs', 'extfs Documentation',
[author], 1)
]
rst_epilog = '.. |project_name| replace:: **%s**' % project
primary_domain = 'cpp'
|