Jon Wayne Parrott | 377f293 | 2016-10-04 10:20:36 -0700 | [diff] [blame] | 1 | [bdist_wheel] |
| 2 | universal = 1 |
Teddy Sudol | a10b15e | 2018-10-05 10:20:33 -0700 | [diff] [blame] | 3 | |
| 4 | [pytype] |
| 5 | # Where to start analysis. |
| 6 | inputs = . |
| 7 | # Some files aren't worth analyzing, namely tests. Hidden directories (e.g. |
| 8 | # .tox) are automatically filtered out. |
| 9 | exclude = tests system_tests |
| 10 | # All pytype output goes here. |
| 11 | output = pytype_output |
| 12 | # Python version (major.minor) of the target code. |
| 13 | python_version = 3.6 |
| 14 | # Paths to source code directories, separated by ':'. |
| 15 | pythonpath = . |
| 16 | # Errors to disable. |
| 17 | disable = pyi-error |