pyproject.toml
author Spencer Baugh <sbaugh@janestreet.com>
Wed, 02 Aug 2023 09:59:49 -0400
changeset 50883 2b4bcdc948e7
parent 47881 58fe6d127a01
permissions -rw-r--r--
rust: don't escape spaces in regex Spaces are not in fact a regex special character, and escaping them is not correct.

[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