-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (33 loc) · 912 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "arho-feature-template"
version = "0.1.0"
requires-python = ">= 3.8"
[tool.setuptools]
packages = ["arho_feature_template"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = "tests"
[tool.coverage.report]
omit = ["arho_feature_template/qgis_plugin_tools/*"]
[tool.ruff]
target-version = "py38"
extend = "ruff_defaults.toml"
exclude = ["arho_feature_template/qgis_plugin_tools"]
[tool.ruff.lint]
unfixable = [
"F401", # unused imports
"F841", # unused variables
]
[[tool.mypy.overrides]]
module = "arho_feature_template.qgis_plugin_tools.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = ["qgis.*", "osgeo.*"]
ignore_missing_imports = true
[tool.qgis-plugin-ci]
plugin_path = "arho_feature_template"
github_organization_slug = "GispoCoding"
project_slug = "arho-feature-template"