File: conf.py

package info (click to toggle)
mypy 1.15.0-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 20,576 kB
  • sloc: python: 105,159; cpp: 11,380; ansic: 6,629; makefile: 247; sh: 20
file content (19 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (4)
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)
]