Skip to content
Snippets Groups Projects
pyproject.toml 391 B
Newer Older
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"

# See <https://pypi.org/project/black/>.

# black defaults to "line-length = 88"; we prefer "line-length = 79" for now to
# please our various tools / IDEs / linters.
[tool.black]
line-length = 79
target = 3.6

[tool.isort]
profile = "black"
include_trailing_comma = true
line_length = 79