-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (40 loc) · 1015 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "comptages" }
[project]
name = "comptages"
version = "0.1"
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies.test = { file = "requirements-test.txt" }
[tool.coverage.run]
omit = ["*/migrations/*", "*/qgissettingmanager/*"]
[tool.pyright]
pythonVersion = "3.10"
exclude = [
"**/nodes_modules",
"**/__pycache__",
"**/migrations",
"**/qgissettingmanager",
"**/test",
]
reportMissingImports = false
useLibraryCodeForTypes = true
[tool.isort]
profile = "black"
src_paths = ["comptages"]
skip_glob = ["**/*/migrations"]
[tool.black]
extend-exclude = '''
/(
# The following are specific to Black, you probably don't want those.
| qgissettingmanager
)/
'''
[tool.qgis-plugin-ci]
plugin_path = "comptages"
github_organization_slug = "opengisch"
project_slug = "OpenComptage"