aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-10-18 23:26:13 +0200
committerAlexis Metaireau <alexis@notmyidea.org>2011-10-18 23:26:13 +0200
commit6f4f04b11756086fa4ace404d4f00c856dc6f157 (patch)
treec5cb1261cb570a6ef59e0fb76279dc2949196eda /docs/conf.py
parent4e1819523f50114ce5e3f0524fc27eb85701da37 (diff)
downloadihatemoney-mirror-6f4f04b11756086fa4ace404d4f00c856dc6f157.zip
ihatemoney-mirror-6f4f04b11756086fa4ace404d4f00c856dc6f157.tar.gz
ihatemoney-mirror-6f4f04b11756086fa4ace404d4f00c856dc6f157.tar.bz2
Document the API. Fix #46
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
new file mode 100644
index 0000000..17f693a
--- /dev/null
+++ b/docs/conf.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+import sys, os
+templates_path = ['_templates']
+source_suffix = '.rst'
+master_doc = 'index'
+
+project = u'I hate money'
+copyright = u'2011, The \'I hate money\' team'
+
+version = '1.0'
+release = '1.0'
+
+exclude_patterns = ['_build']
+pygments_style = 'sphinx'
+
+sys.path.append(os.path.abspath('_themes'))
+html_theme_path = ['_themes']
+html_theme = 'pelican'
+html_static_path = ['_static']
+html_theme_options = { 'nosidebar': True }