Skip to content

Commit fa473ae

Browse files
committed
Add pyproject.toml file
1 parent 4f3a059 commit fa473ae

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)