1
0
Fork 0

Configure black and isort and editors supporting editorconfig

This commit is contained in:
Daniele Tricoli 2023-02-10 00:10:17 +01:00
parent 24d33b33c0
commit 9cf90b7442
2 changed files with 14 additions and 1 deletions

6
.editorconfig Normal file
View File

@ -0,0 +1,6 @@
root = true
[*.py]
indent_style = space
indent_size = 4
max_line_length = 88

View File

@ -1,7 +1,14 @@
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
[tool.poetry]
name = "freakble"
version = "0.1.0"
description = ""
description = "A simple tool to send messages into FreakWAN over Bluetooth low energy."
authors = ["Daniele Tricoli <eriol@mornie.org>"]
readme = "README.md"
packages = [{include = "freakble", from = "src"}]