forked from Sooner-Rover-Team/auto_ros2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 948 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 948 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
[project]
dependencies = [
"pyside2>=5.15.2.1; platform_machine != 'arm64' and platform_machine != 'aarch64'",
]
name = "autonomous"
version = "0.2.0"
requires-python = ">=3.10"
# if one python project depends on another, put it here!
[tool.uv.sources]
[tool.uv.workspace]
members = [
"src/navigator_node",
"src/log_node",
"src/aruco_node",
"src/simulator",
"src/manual_control",
"lib/rovereye/training",
]
[tool.basedpyright]
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportMissingTypeStubs = false
exclude = [
"install/",
"build/",
"src/**/install/",
"src/**/build/",
"**/__pycache__",
"**/.*",
]
[tool.pixi.workspace]
[tool.pixi.pypi-dependencies]
autonomous = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
dev = { features = ["dev"], solve-group = "default" }
[tool.pixi.tasks]