Skip to content

Commit

Permalink
maint: add pyproject toml for black
Browse files Browse the repository at this point in the history
  • Loading branch information
maffettone committed Apr 5, 2024
1 parent ee1df16 commit 2795117
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[tool.black]
line-length = 115
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| _build
| build
| buck-out
| build
| dist
| docs
| blib2to3
| tests/data
)/
| versioneer.py
)
'''

0 comments on commit 2795117

Please sign in to comment.