Skip to content

Commit

Permalink
Starting on pyproject.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
mgalloy committed May 2, 2019
1 parent 747404f commit fa56547
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''

0 comments on commit fa56547

Please sign in to comment.