aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
blob: 630c9114aaa044775f67bda7210f7975a47913b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

project = 'YASL'
master_doc = 'yasl'
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 = [
    ('yasl', 'yasl', 'Yet Another String Library for C', [], 3),
    ('yaslnew', 'yaslnew', 'Create a new yasl string', [], 3),
    ('yaslfree', 'yaslfree', 'Free a yasl string', [], 3),
]