30 lines
490 B
TOML
30 lines
490 B
TOML
[tool.black]
|
|
line-length = 100
|
|
exclude = '''
|
|
(
|
|
/(
|
|
\.eggs # exclude a few common directories in the
|
|
| \.git # root of the project
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
# Exclude vendor directory
|
|
| vendor
|
|
)
|
|
'''
|
|
|
|
[tool.isort]
|
|
line_length = 100
|
|
multi_line_output=0
|
|
lines_after_imports=2
|
|
|
|
[build-system]
|
|
requires = ["setuptools >= 46.4.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|