forked from opengisch/OpenComptage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 857 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"]
build-backend = "setuptools.build_meta"
[project]
name = "comptages"
version = "0.1"
dynamic = ["dependencies"]
[project.optional-dependencies]
check = ["pyright>=1.1.36", "black>=23.11.0", "qgis-plugin-ci>=2.8.1"]
[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"
[tool.pyright]
pythonVersion = "3.10"
exclude = [
"**/nodes_modules",
"**/__pycache__",
"**/migrations",
"**/qgissettingmanager",
"**/test",
]
reportMissingImports = false
useLibraryCodeForTypes = true
[tool.setuptools]
package-dir = { "" = "comptages" }
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }