a b/pyproject.toml
1
[build-system]
2
requires = ['setuptools>=45', 'wheel']
3
build-backend = 'setuptools.build_meta'
4
5
[tool.black]
6
# include = '\.pyi?$'
7
include = '''
8
/(
9
    \.py
10
  | \.pt
11
)/
12
'''
13
exclude = '''
14
/(
15
    \.eggs
16
  | \.git
17
  | \.hg
18
  | \.mypy_cache
19
  | \.nox
20
  | \.tox
21
  | \.venv
22
  | _build
23
  | buck-out
24
  | build
25
  | dist
26
)/
27
'''