pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Fri, 04 Nov 2022 17:54:43 -0400
changeset 49574 2506c3ac73f4
parent 48004 58fe6d127a01
permissions -rw-r--r--
vfs: make the default opener mode binary The default was already binary for `abstractvfs`, and the `vfs` implementation adds binary mode if the caller didn't supply it. Therefore, it should be safe for all vfs objects (and I don't think we want text reads anyway).

[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