-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpixi.toml
More file actions
145 lines (129 loc) · 4.48 KB
/
pixi.toml
File metadata and controls
145 lines (129 loc) · 4.48 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[workspace]
name = "motion_stack"
description = "From modular robots with distributed computation, to a simple robotic arm, the motion stack provides control for (multi-)limbed systems."
channels = [ "https://prefix.dev/conda-forge", "https://prefix.dev/motion-stack"]
platforms = ["linux-64", "linux-aarch64"]
# Dependencies used by all environments
[dependencies]
# ms dependencies
python = "*"
pytest = "*"
numpy = "*"
nptyping = "*"
quaternion = "*"
scipy = "*"
spatialmath-python = "*"
roboticstoolbox-python = "*"
urwid = "*"
# Build tools
compilers = ">=1.11.0,<2"
cmake = ">=3,<5"
pkg-config = ">=0.29.2,<0.30"
make = "*"
ninja = ">=1.13.1,<2"
# ROS specific tools
rosdep = "*"
colcon-common-extensions = ">=0.3.0,<0.4"
sdl2 = "*"
pysdl2 = "*"
sdl2_image = "*"
sdl2_ttf = "*"
sdl2_mixer = "*"
sdl2_gfx = "*"
asyncio_for_robotics = "*"
gogo_keyboard = "*"
readline = ">=8.3,<9"
# [pypi-dependencies]
# pysdl2 = "*"
# pysdl2-dll = "*"
[target.linux.dependencies]
libgl-devel = "*"
# Define all the different ROS environments
# Each environment corresponds to a different ROS distribution
# and can be activated using the `pixi run/shell -e <environment>` command.
[environments]
default = { features = ["jazzy"] }
humble = { features = ["humble"] }
jazzy = { features = ["jazzy"] }
kilted = { features = ["kilted"] }
### ROS Humble ####
[feature.humble]
channels = ["https://prefix.dev/robostack-humble"]
[feature.humble.dependencies]
# setuptools = "<=58.2.0"
ros-humble-ros-core = "*"
ros-humble-xacro = "*"
ros-humble-joint-state-publisher = "*"
ros-humble-robot-state-publisher = "*"
ros-humble-sensor-msgs = "*"
ros-humble-tf2-sensor-msgs = "*"
ros-humble-std-msgs = "*"
ros-humble-builtin-interfaces = "*"
ros-humble-rviz2 = "*"
ros-humble-rclpy = "*"
ros-humble-rclcpp = "*"
ros-humble-ament-cmake-auto = "*"
ros-humble-rmw-cyclonedds-cpp = "*"
ros-humble-rmw-fastrtps-cpp = "*"
ros-humble-rmw-zenoh-cpp = "*"
### ROS Jazzy ####
[feature.jazzy]
channels = ["https://prefix.dev/robostack-jazzy"]
[feature.jazzy.dependencies]
# setuptools = "<=61.1.0"
ros-jazzy-ros-core = "*"
ros-jazzy-xacro = "*"
ros-jazzy-joint-state-publisher = "*"
ros-jazzy-robot-state-publisher = "*"
ros-jazzy-sensor-msgs = "*"
ros-jazzy-tf2-sensor-msgs = "*"
ros-jazzy-std-msgs = "*"
ros-jazzy-builtin-interfaces = "*"
ros-jazzy-rviz2 = "*"
ros-jazzy-rclpy = "*"
ros-jazzy-rclcpp = "*"
ros-jazzy-ament-cmake-auto = "*"
ros-jazzy-rmw-cyclonedds-cpp = "*"
ros-jazzy-rmw-fastrtps-cpp = "*"
ros-jazzy-rmw-zenoh-cpp = "*"
### ROS Kilted ####
[feature.kilted]
channels = ["https://prefix.dev/robostack-kilted"]
[feature.kilted.dependencies]
# setuptools = "<=79.0.0"
ros-kilted-ros-core = "*"
ros-kilted-xacro = "*"
ros-kilted-joint-state-publisher = "*"
ros-kilted-robot-state-publisher = "*"
ros-kilted-sensor-msgs = "*"
ros-kilted-tf2-sensor-msgs = "*"
ros-kilted-std-msgs = "*"
ros-kilted-builtin-interfaces = "*"
ros-kilted-rviz2 = "*"
ros-kilted-rclpy = "*"
ros-kilted-rclcpp = "*"
ros-kilted-ament-cmake-auto = "*"
ros-kilted-rmw-cyclonedds-cpp = "*"
ros-kilted-rmw-fastrtps-cpp = "*"
ros-kilted-rmw-zenoh-cpp = "*"
[feature.humble.activation]
# For activation scripts, we use bash for Unix-like systems
scripts = ["install-humble/setup.bash"]
[feature.humble.tasks]
build = "colcon build --symlink-install --cmake-args -Wno-dev -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DPython_FIND_VIRTUALENV=ONLY -DPython3_FIND_VIRTUALENV=ONLY -G Ninja --base-paths ./src --build-base ./build-humble --install-base ./install-humble"
test = "pytest ./src/motion_stack/test/"
cl = "rm -r ./build-humble ./install-humble ./log"
[feature.jazzy.activation]
# For activation scripts, we use bash for Unix-like systems
scripts = ["install-jazzy/setup.bash"]
[feature.jazzy.tasks]
build = "colcon build --symlink-install --cmake-args -Wno-dev -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DPython_FIND_VIRTUALENV=ONLY -DPython3_FIND_VIRTUALENV=ONLY -G Ninja --base-paths ./src --build-base ./build-jazzy --install-base ./install-jazzy "
test = "pytest ./src/motion_stack/test/"
cl = "rm -r ./build-jazzy ./install-jazzy ./log"
[feature.kilted.activation]
# For activation scripts, we use bash for Unix-like systems
scripts = ["install-kilted/setup.bash"]
[feature.kilted.tasks]
build = "colcon build --symlink-install --cmake-args -Wno-dev -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DPython_FIND_VIRTUALENV=ONLY -DPython3_FIND_VIRTUALENV=ONLY -G Ninja --base-paths ./src --build-base ./build-kilted --install-base ./install-kilted "
test = "pytest ./src/motion_stack/test/"
cl = "rm -r ./build-kilted ./install-kilted ./log"