]> git.ipfire.org Git - thirdparty/tornado.git/blob - setup.cfg
Merge pull request #3420 from bdarnell/rtd
[thirdparty/tornado.git] / setup.cfg
1 [metadata]
2 license_file = LICENSE
3
4 [mypy]
5 python_version = 3.8
6 no_implicit_optional = True
7
8 [mypy-tornado.*,tornado.platform.*]
9 disallow_untyped_defs = True
10
11 # It's generally too tedious to require type annotations in tests, but
12 # we do want to type check them as much as type inference allows.
13 [mypy-tornado.test.*]
14 disallow_untyped_defs = False
15 check_untyped_defs = True