Skip to content

Commit

Permalink
[pyproject] Add black configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pmav99 committed Jan 24, 2019
1 parent 74a258c commit 8158b86
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pyproject.toml
Expand Up @@ -22,6 +22,24 @@ bump2version = "^0.5.10"
[tool.poetry.scripts]
virtbuilder = 'virtbuilder.console.application:main'

[tool.black]
line-length = 88
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

0 comments on commit 8158b86

Please sign in to comment.