|
|
|
@ -46,18 +46,25 @@ test = [
@@ -46,18 +46,25 @@ test = [
|
|
|
|
|
] |
|
|
|
|
dev = [ |
|
|
|
|
"black", |
|
|
|
|
"flake8", |
|
|
|
|
"flake8-comprehensions", |
|
|
|
|
"flake8-bandit", |
|
|
|
|
"isort >= 5.0.0", |
|
|
|
|
"keyring", |
|
|
|
|
"pre-commit", |
|
|
|
|
"ruff", |
|
|
|
|
] |
|
|
|
|
docs = [ |
|
|
|
|
"mkdocs", |
|
|
|
|
"mkdocstrings[python]", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options] |
|
|
|
|
markers = [ |
|
|
|
|
"functional: marks tests as functional (deselect with '-m \"not functional\"')", |
|
|
|
|
] |
|
|
|
|
addopts = [ |
|
|
|
|
"--strict-markers", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool.black] |
|
|
|
|
line-length = 79 |
|
|
|
|
target-version = ['py39', 'py310'] |
|
|
|
@ -72,16 +79,38 @@ extend-exclude = '''
@@ -72,16 +79,38 @@ extend-exclude = '''
|
|
|
|
|
^/.dist |
|
|
|
|
''' |
|
|
|
|
|
|
|
|
|
[tool.isort] |
|
|
|
|
line_length=79 |
|
|
|
|
multi_line_output=3 |
|
|
|
|
length_sort="True" |
|
|
|
|
include_trailing_comma="True" |
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options] |
|
|
|
|
markers = [ |
|
|
|
|
"functional: marks tests as functional (deselect with '-m \"not functional\"')", |
|
|
|
|
] |
|
|
|
|
addopts = [ |
|
|
|
|
"--strict-markers", |
|
|
|
|
[tool.ruff] |
|
|
|
|
select = ["ALL"] |
|
|
|
|
ignore = [ |
|
|
|
|
# ignored for now, should be activated in the future |
|
|
|
|
# docstrings |
|
|
|
|
"D", |
|
|
|
|
# flake8-annotations |
|
|
|
|
"ANN", |
|
|
|
|
# flake8-type-checking |
|
|
|
|
"TCH", |
|
|
|
|
|
|
|
|
|
# ignored, "black" will handle this |
|
|
|
|
# flake8-commas |
|
|
|
|
"COM", |
|
|
|
|
|
|
|
|
|
# ignored, due to Windows / WSL2 setup |
|
|
|
|
# flake8-executable |
|
|
|
|
"EXE", |
|
|
|
|
|
|
|
|
|
# project specific ignores |
|
|
|
|
# flake8-import-conventions |
|
|
|
|
"ICN", |
|
|
|
|
] |
|
|
|
|
fixable = ["I"] |
|
|
|
|
fix = true |
|
|
|
|
line-length=79 |
|
|
|
|
target-version = "py38" |
|
|
|
|
|
|
|
|
|
[tool.ruff.per-file-ignores] |
|
|
|
|
# see https://github.com/charliermarsh/ruff |
|
|
|
|
"tests/*" = ["FBT003", "INP001", "PLR2004", "S101"] |
|
|
|
|
|
|
|
|
|
[tool.ruff.pydocstyle] |
|
|
|
|
convention = "pep257" # Accepts: "google", "numpy", or "pep257" |