--- a +++ b/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ['setuptools>=45', 'wheel'] +build-backend = 'setuptools.build_meta' + +[tool.black] +# include = '\.pyi?$' +include = ''' +/( + \.py + | \.pt +)/ +''' +exclude = ''' +/( + \.eggs + | \.git + | \.hg + | \.mypy_cache + | \.nox + | \.tox + | \.venv + | _build + | buck-out + | build + | dist +)/ +'''