aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
new file mode 100644
index 0000000..8d79a11
--- /dev/null
+++ b/docs/conf.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+project = 'SDS'
+master_doc = 'sds'
+source_suffix = '.rst'
+
+show_authors = False
+today_fmt = '%d %b %Y'
+
+# One entry per manual page. List of tuples
+# (source start file, name, description, authors, manual section).
+man_pages = [
+ ('sds', 'sds', 'Simple Dynamic String library for C', [], 3),
+ ('sdsnew', 'sdsnew', 'Create a new SDS string', [], 3),
+ ('sdsfree', 'sdsfree', 'Free an SDS string', [], 3),
+]