-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 942 Bytes
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
#
# Define uv workspace and dependency groups
[dependency-groups]
dev = [
"coverage[toml]",
"maturin<=2.0.0",
"grpcio-tools",
"qgis-plugin-manager",
"setuptools", # Needed for building C extension
"packaging>=24.2", # Needed by setuptools
{include-group = "tests"},
{include-group = "lint"},
]
tests = [
"pytest",
"pytest-asyncio",
"pytest-aiohttp",
"pytest-httpserver",
"coverage",
]
lint = [
"ruff",
"mypy",
"mypy-extensions",
"types-protobuf",
"types-psutil",
"types-PyYAML",
"types-requests",
"types-aiofiles",
"bandit",
"vulture",
]
doc = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-httpdomain",
"swagger-plugin-for-sphinx",
]
tools = [
"ipython",
]
[tool.uv.workspace]
members = [
"qjazz-contrib",
"qjazz-processes",
"qjazz-server/qjazz-rpc",
"qjazz-server/qjazz-map",
"qjazz-metapackage",
]