We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3a059 commit fa473aeCopy full SHA for fa473ae
pyproject.toml
@@ -0,0 +1,29 @@
1
+# Support for PEP 517
2
+# https://setuptools.readthedocs.io/en/latest/setuptools.html#setup-cfg-only-projects
3
+[build-system]
4
+build-backend = "setuptools.build_meta"
5
+requires = [
6
+ "setuptools >= 40.9.0",
7
+ "wheel",
8
+]
9
+
10
+[tool.black]
11
+exclude = '''
12
+(
13
+ \.egg
14
+ | \.eggs
15
+ | \.git
16
+ | \.hg
17
+ | \.mypy_cache
18
+ | \.pytest_cache
19
+ | \.tox
20
+ | \.nox
21
+ | \.venv
22
+ | _build
23
+ | build
24
+ | dist
25
+ | setup.py
26
+)
27
+'''
28
+line-length = 88
29
+target-version = ['py36', 'py37', 'py38']
0 commit comments