Add pyproject.toml as per PEP 518

This commit is contained in:
Hugo
2019-10-22 11:50:38 +02:00
committed by Claude Paroz
parent 1f000f2f2c
commit 3197e59b25
3 changed files with 8 additions and 7 deletions
-6
View File
@@ -1,6 +0,0 @@
[settings]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
+1 -1
View File
@@ -1,6 +1,6 @@
recursive-include docs *
recursive-include tests *
include pytest.ini tox.ini .isort.cfg .coveragerc *.md LICENSE AUTHORS
include pyproject.toml pytest.ini tox.ini .coveragerc *.md LICENSE AUTHORS
prune docs/_build
prune *.pyc
prune __pycache__
+7
View File
@@ -0,0 +1,7 @@
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true