2020-07-29 17:08:56 -04:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
|
2020-02-14 09:09:34 -05:00
|
|
|
[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
|
2020-05-06 21:23:57 -04:00
|
|
|
| ply
|
2020-08-06 10:06:23 +02:00
|
|
|
| vended_ptk/prompt_toolkit
|
2020-08-10 12:43:25 +02:00
|
|
|
| vended_ptk/wcwidth
|
2020-02-14 09:09:34 -05:00
|
|
|
)/
|
|
|
|
)
|
|
|
|
'''
|