Diff of /pyproject.toml [000000] .. [5d6472]

Switch to side-by-side view

--- 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
+)/
+'''