summaryrefslogtreecommitdiff
path: root/doc/src/conf.py
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2016-12-24 12:46:04 +0100
committerFelix Morgner <felix.morgner@gmail.com>2016-12-24 12:46:04 +0100
commit9b02e03c2a6f8a74a83dd40c69719fe36f4dd154 (patch)
tree2994ed54fcc532b035f38afa39b13556556ebf7c /doc/src/conf.py
parent31bb7fd29bca88f86860bdc8aa7f09c3e8e3f111 (diff)
downloadextfs-9b02e03c2a6f8a74a83dd40c69719fe36f4dd154.tar.xz
extfs-9b02e03c2a6f8a74a83dd40c69719fe36f4dd154.zip
Update documentation
Diffstat (limited to 'doc/src/conf.py')
-rw-r--r--doc/src/conf.py49
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'