Skip to content

Commit

Permalink
Add pyproject.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmasuch committed Nov 20, 2020
1 parent 4f3a059 commit fa473ae
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Support for PEP 517
# https://setuptools.readthedocs.io/en/latest/setuptools.html#setup-cfg-only-projects
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 40.9.0",
"wheel",
]

[tool.black]
exclude = '''
(
\.egg
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.nox
| \.venv
| _build
| build
| dist
| setup.py
)
'''
line-length = 88
target-version = ['py36', 'py37', 'py38']

0 comments on commit fa473ae

Please sign in to comment.