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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
From 2d592692d4f1e401c47220069c97d3bc6061835f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig=20=28Debian/GNU=29?=
<umlaeute@debian.org>
Date: Mon, 26 Sep 2016 14:02:36 +0200
Subject: Added missing sphinx-config
---
doc/conf.py | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
create mode 100644 doc/conf.py
diff --git a/doc/conf.py b/doc/conf.py
new file mode 100644
index 0000000..56f74f7
--- /dev/null
+++ b/doc/conf.py
@@ -0,0 +1,53 @@
+# -*- coding: utf-8 -*-
+
+import sys, os
+sys.path.append(os.path.abspath('../'))
+
+extensions = [
+ 'sphinx.ext.autodoc',
+ 'sphinx.ext.todo',
+]
+
+# Add any paths that contain templates here, relative to this directory.
+#templates_path = ['_templates']
+
+source_suffix = '.rst'
+master_doc = 'index'
+project = u'can'
+copyright = u'2016, Brian Thorne et al.'
+author = u'Brian Thorne et al.'
+# The short X.Y version.
+version = u'1.5.2'
+# The full version, including alpha/beta/rc tags.
+release = u'1.5.2'
+
+language = None
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#
+# today = ''
+today = False
+#
+# Else, today_fmt is used as the format for a strftime call.
+#
+# today_fmt = '%B %d, %Y'
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+# This patterns also effect to html_static_path and html_extra_path
+exclude_patterns = []
+
+pygments_style = 'sphinx'
+todo_include_todos = True
+
+html_theme = 'alabaster'
+#html_static_path = ['_static']
+html_show_sourcelink = False
+
+
+# (source start file, name, description, authors, manual section).
+man_pages = [
+ (master_doc, 'can', u'can Documentation',
+ [author], 1)
+]
|