1[mypy]
2
3[mypy-__main__]
4follow_imports = silent
5ignore_missing_imports = true
6
7# 3rd-party libs for which we don't have stubs
8[mypy-apiclient.*,numpy.*,pytest.*,scipy.*,,setuptools.*,_pytest.*]
9follow_imports = silent
10ignore_missing_imports = true
11
12# Adding "sympy.* or mypy-sympy to the above list (3rd-party libs for which we don't have stubs) doesn't ignore "cannot find module 'sympy' error
13[mypy-sympy.*]
14ignore_missing_imports = True
15
16
17