forked from MIERUNE/plateau-qgis-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (47 loc) · 937 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
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "qgis-plateau-plugin"
version = "0.0.0"
description = ""
authors = ["Project PLATEAU <no-reply@mlit.go.jp>"]
readme = "README.md"
packages = [{ include = "plateau_plugin" }]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8"
pytest-cov = "^4"
pyqt5-stubs = "^5"
ruff = "^0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
addopts = ["--import-mode=importlib"]
# filterwarnings = "ignore::DeprecationWarning"
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"B",
"N",
"UP",
"I",
"C90",
"C4",
"DTZ",
"PIE",
"PT",
"Q",
"SIM",
"RUF",
]
ignore = ["N802", "E501"]
[tool.ruff.lint.isort]
known-third-party = ["plateau"]
[tool.coverage.run]
source = ['plateau_plugin']
concurrency = ["thread"]