xonsh/pyproject.toml

37 lines
612 B
TOML
Raw Normal View History

2020-07-29 17:08:56 -04:00
[build-system]
requires = ["setuptools", "wheel"]
[tool.black]
# better to keep default line-length than to match flake8
exclude = '''
( # exclude entire contents of these top level directories...
/( \.eggs
| \.git
| \.hg
| \.mypy
| _cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
|
(
# and these additional random rules
/( __pycache__
| \.circleci
| \.github
| \.vscode
| \.pytest_cache
| ply
| vended_ptk/prompt_toolkit
| vended_ptk/wcwidth
)/
)
'''