diff options
Diffstat (limited to 'doc/src/conf.py')
| -rw-r--r-- | doc/src/conf.py | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/doc/src/conf.py b/doc/src/conf.py new file mode 100644 index 0000000..a67aee4 --- /dev/null +++ b/doc/src/conf.py @@ -0,0 +1,49 @@ +#!/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'] + +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 = False + +htmlhelp_basename = 'extfsdoc' + +man_pages = [ + (master_doc, 'extfs', 'extfs Documentation', + [author], 1) +] + +rst_epilog = '.. |project_name| replace:: **%s**' % project + +primary_domain = 'cpp' |
