added config for black and isort

This commit is contained in:
btrojan-official 2025-01-27 17:46:43 +01:00
parent 13d77f609a
commit 4bb4dd14cd

18
pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 88
known_first_party = ["linters-configuration-python"] # Adjust for your project name
default_section = "THIRDPARTY"
[tool.mypy]
strict = true
check_untyped_defs = true
ignore_missing_imports = true
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"