pyproject.toml
author Spencer Baugh <sbaugh@janestreet.com>
Wed, 02 Aug 2023 10:21:18 -0400
changeset 50887 264072107105
parent 47881 58fe6d127a01
permissions -rw-r--r--
rust-status: error on non-existent files in file_set file_set here consists of the files that were explicitly specified on the command line. Erroring on them matches the behavior of Python status.

[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