You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
407 B
20 lines
407 B
[tool.black]
|
|
line-length = 79
|
|
target-version = ["py37"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
combine_as_imports = true
|
|
combine_star = true
|
|
line_length = 79
|
|
|
|
[tool.pyright]
|
|
include = ["a2s/**/*.py", "a2s/**/*.pyi"]
|
|
useLibraryCodeForTypes = true
|
|
typeCheckingMode = "strict"
|
|
pythonVersion = "3.7"
|
|
reportImportCycles = false
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|