pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Thu, 26 Sep 2024 02:58:50 +0200
changeset 51897 499b19683c1b
parent 48004 58fe6d127a01
permissions -rw-r--r--
profiling: pass bytes to `_()` and `error.Abort()` And of course `other_tool_name` is str too, so that needs to be converted. The type hints from PyCharm say `sys.monitoring.get_tool()` can return None, so handle that case explicitly before it trips up pytype.

[build-system]
requires = ["setuptools", "wheel"]

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true