20 lines
218 B
TOML
20 lines
218 B
TOML
[tool.black]
|
|
line-length = 80
|
|
target-version = ['py310']
|
|
include = '\\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
.git
|
|
| .hg
|
|
| .mypy_cache
|
|
| .tox
|
|
| .venv
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
|