pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Tue, 23 Jul 2024 12:10:31 +0200
changeset 51711 832a1aeb576f
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
pytype: only try the hacky way of finding PYTHON if not provided This allows us to work in more environments, like when using pyenv. This syntax is compatible with all POSIX shells.

[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