blob: 1c026bdb489ca91ccb8115858fab7354bc6d699e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
import os
project = 'yawa'
master_doc = 'yawa'
source_suffix = '.rst'
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('yawa', 'yawa', 'Yet Another Wallpaper Application',
[u'Johannes Löthberg'], 1)
]
|