crisp-python 1.2.1__tar.gz → 1.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {crisp_python-1.2.1 → crisp_python-1.2.2}/PKG-INFO +1 -1
- crisp_python-1.2.2/crisp_py/__init__.py +21 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_python.egg-info/PKG-INFO +1 -1
- {crisp_python-1.2.1 → crisp_python-1.2.2}/pyproject.toml +1 -1
- crisp_python-1.2.1/crisp_py/__init__.py +0 -9
- {crisp_python-1.2.1 → crisp_python-1.2.2}/README.md +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/camera/__init__.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/camera/camera.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/camera/camera_config.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/control/__init__.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/control/controller_switcher.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/control/joint_trajectory_controller_client.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/control/parameters_client.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/gripper/__init__.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/gripper/gripper.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/robot.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/robot_config.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/sensors/sensor.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/sensors/sensor_config.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/utils/__init__.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/utils/callback_monitor.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/utils/diagnostics_viewer.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_python.egg-info/SOURCES.txt +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_python.egg-info/dependency_links.txt +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_python.egg-info/requires.txt +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_python.egg-info/top_level.txt +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/setup.cfg +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/__init__.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/test_camera.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/test_gripper.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/test_pose.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/test_robot.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/test_robot_config.py +0 -0
- {crisp_python-1.2.1 → crisp_python-1.2.2}/tests/unit/test_sensor.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""Initialize crisp_py."""
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
import rclpy # noqa: F401
|
|
5
|
+
except ImportError:
|
|
6
|
+
print("ROS2 should be installed and sourced!")
|
|
7
|
+
|
|
8
|
+
try:
|
|
9
|
+
import control_msgs # noqa: F401
|
|
10
|
+
|
|
11
|
+
except ImportError:
|
|
12
|
+
print(
|
|
13
|
+
"Could not import control_msgs. Make sure that you installed ros-<ROS_DISTRO>-ros2-control(lers)."
|
|
14
|
+
)
|
|
15
|
+
print(
|
|
16
|
+
"If you are using robostack with pixi, add the following lines to your pixi.toml dependencies:"
|
|
17
|
+
)
|
|
18
|
+
print('ros-<ROS_DISTRO>-ros2-control = "*"\nros-<ROS_DISTRO>-ros2-controllers = "*"')
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
__version__ = "1.2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{crisp_python-1.2.1 → crisp_python-1.2.2}/crisp_py/control/joint_trajectory_controller_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|