1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# -*- coding: utf-8 -*-
project = 'Mypy'
author = 'Jukka Lehtosalo and contributors'
master_doc = 'index'
source_suffix = '.rst'
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('mypy', 'mypy',
u'Optional static typing for Python',
[author], 1),
('dmypy', 'dmypy',
u'mypy daemon mode client',
[author], 1),
('stubgen', 'stubgen',
u'Generate draft type hint stubs for Python modules',
[author], 1)
]
|