File: setup.cfg

package info (click to toggle)
python-tornado 6.5.4-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,208 kB
  • sloc: python: 28,773; javascript: 156; sh: 100; ansic: 72; makefile: 49; xml: 49; sql: 23
file content (15 lines) | stat: -rw-r--r-- 373 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[metadata]
license_file = LICENSE

[mypy]
python_version = 3.9
no_implicit_optional = True

[mypy-tornado.*,tornado.platform.*]
disallow_untyped_defs = True

# It's generally too tedious to require type annotations in tests, but
# we do want to type check them as much as type inference allows.
[mypy-tornado.test.*]
disallow_untyped_defs = False
check_untyped_defs = True