pyproject.toml
32 lines
| 864 B
| application/toml
|
TOMLLexer
James Morris
|
r27264 | [build-system] | ||
Michał Górny
|
r27682 | requires = ["setuptools >= 51.0.0"] | ||
build-backend = "setuptools.build_meta" | ||||
Matthias Bussonnier
|
r28167 | [tool.mypy] | ||
python_version = 3.8 | ||||
ignore_missing_imports = true | ||||
follow_imports = 'silent' | ||||
exclude = [ | ||||
'test_\.+\.py', | ||||
'IPython.utils.tests.test_wildcard', | ||||
'testing', | ||||
'tests', | ||||
'PyColorize.py', | ||||
'_process_win32_controller.py', | ||||
'IPython/core/application.py', | ||||
'IPython/core/completerlib.py', | ||||
'IPython/core/displaypub.py', | ||||
'IPython/core/historyapp.py', | ||||
#'IPython/core/interactiveshell.py', | ||||
'IPython/core/magic.py', | ||||
'IPython/core/profileapp.py', | ||||
'IPython/core/ultratb.py', | ||||
'IPython/lib/deepreload.py', | ||||
'IPython/lib/pretty.py', | ||||
'IPython/sphinxext/ipython_directive.py', | ||||
'IPython/terminal/ipapp.py', | ||||
'IPython/utils/_process_win32.py', | ||||
'IPython/utils/path.py', | ||||
'IPython/utils/timing.py', | ||||
'IPython/utils/text.py' | ||||
] | ||||