Skip to content

Commit

Permalink
fix(build-system): configuration for black python code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Feb 19, 2022
1 parent 90d4cc9 commit a8100e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Copyritht © 2022 Marcin Różewski MDSANIMA

# Build System Information.
[build-system]
requires = ["setuptools>=46.4.0", "wheel"]
build-backend = "setuptools.build_meta"

# Configuration for Black Python Code Formatter.
[tool.black]
line-length = 79
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'

0 comments on commit a8100e1

Please sign in to comment.