distribusi-verse/pyproject.toml

26 lines
329 B
TOML
Raw Normal View History

2024-04-19 22:33:52 +02:00
[tool.black]
line-length = 79
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
2022-01-05 13:42:24 +01:00
# The following are specific to Black, you probably don't want those.
| blib2to3
2024-04-19 22:33:52 +02:00
| tests/data
2022-01-05 13:42:24 +01:00
| profiling
)/
2024-04-19 22:33:52 +02:00
'''
2022-01-05 13:42:24 +01:00