crisp-python 1.2.3__tar.gz → 1.3.0__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.
Files changed (53) hide show
  1. crisp_python-1.3.0/MANIFEST.in +3 -0
  2. {crisp_python-1.2.3 → crisp_python-1.3.0}/PKG-INFO +1 -11
  3. crisp_python-1.3.0/crisp_py/config/control/clipped_cartesian_impedance.yaml +37 -0
  4. crisp_python-1.3.0/crisp_py/config/control/default_cartesian_impedance.yaml +36 -0
  5. crisp_python-1.3.0/crisp_py/config/control/default_operational_space_controller.yaml +36 -0
  6. crisp_python-1.3.0/crisp_py/config/control/gravity_compensation.yaml +36 -0
  7. crisp_python-1.3.0/crisp_py/config/control/gravity_compensation_on_plane.yaml +36 -0
  8. crisp_python-1.3.0/crisp_py/config/control/joint_control.yaml +48 -0
  9. crisp_python-1.3.0/crisp_py/config/control/joint_velocity_control.yaml +47 -0
  10. crisp_python-1.3.0/crisp_py/config/control/no_friction_cartesian_impedance.yaml +65 -0
  11. crisp_python-1.3.0/crisp_py/config/gripper_franka.yaml +2 -0
  12. crisp_python-1.3.0/crisp_py/config/gripper_left.yaml +4 -0
  13. crisp_python-1.3.0/crisp_py/config/gripper_left_config.yaml +2 -0
  14. crisp_python-1.3.0/crisp_py/config/gripper_right.yaml +4 -0
  15. crisp_python-1.3.0/crisp_py/config/gripper_right_config.yaml +2 -0
  16. crisp_python-1.3.0/crisp_py/config/gripper_uncalibrated.yaml +2 -0
  17. crisp_python-1.3.0/crisp_py/config/gripper_with_trigger.yaml +3 -0
  18. crisp_python-1.3.0/crisp_py/config/trigger_left.yaml +4 -0
  19. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_python.egg-info/PKG-INFO +1 -11
  20. crisp_python-1.3.0/crisp_python.egg-info/SOURCES.txt +42 -0
  21. crisp_python-1.3.0/crisp_python.egg-info/top_level.txt +1 -0
  22. {crisp_python-1.2.3 → crisp_python-1.3.0}/pyproject.toml +6 -2
  23. crisp_python-1.2.3/crisp_python.egg-info/SOURCES.txt +0 -32
  24. crisp_python-1.2.3/crisp_python.egg-info/top_level.txt +0 -4
  25. crisp_python-1.2.3/tests/unit/__init__.py +0 -1
  26. crisp_python-1.2.3/tests/unit/test_camera.py +0 -638
  27. crisp_python-1.2.3/tests/unit/test_gripper.py +0 -781
  28. crisp_python-1.2.3/tests/unit/test_pose.py +0 -147
  29. crisp_python-1.2.3/tests/unit/test_robot.py +0 -359
  30. crisp_python-1.2.3/tests/unit/test_robot_config.py +0 -278
  31. crisp_python-1.2.3/tests/unit/test_sensor.py +0 -238
  32. {crisp_python-1.2.3 → crisp_python-1.3.0}/LICENSE.md +0 -0
  33. {crisp_python-1.2.3 → crisp_python-1.3.0}/README.md +0 -0
  34. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/__init__.py +0 -0
  35. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/camera/__init__.py +0 -0
  36. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/camera/camera.py +0 -0
  37. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/camera/camera_config.py +0 -0
  38. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/control/__init__.py +0 -0
  39. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/control/controller_switcher.py +0 -0
  40. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/control/joint_trajectory_controller_client.py +0 -0
  41. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/control/parameters_client.py +0 -0
  42. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/gripper/__init__.py +0 -0
  43. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/gripper/gripper.py +0 -0
  44. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/robot.py +0 -0
  45. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/robot_config.py +0 -0
  46. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/sensors/sensor.py +0 -0
  47. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/sensors/sensor_config.py +0 -0
  48. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/utils/__init__.py +0 -0
  49. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/utils/callback_monitor.py +0 -0
  50. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_py/utils/diagnostics_viewer.py +0 -0
  51. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_python.egg-info/dependency_links.txt +0 -0
  52. {crisp_python-1.2.3 → crisp_python-1.3.0}/crisp_python.egg-info/requires.txt +0 -0
  53. {crisp_python-1.2.3 → crisp_python-1.3.0}/setup.cfg +0 -0
@@ -0,0 +1,3 @@
1
+ recursive-include crisp_py/config *.yaml
2
+ recursive-include crisp_py/config control/*
3
+
@@ -1,17 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crisp-python
3
- Version: 1.2.3
3
+ Version: 1.3.0
4
4
  Summary: Simple python interface to control robots that use crisp_controllers and other ROS2 components.
5
- License: The MIT License
6
-
7
- Copyright 2025 Learning Systems and Robotics Lab
8
-
9
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
-
15
5
  Project-URL: Homepage, https://utiasDSL.github.io/crisp_controllers/
16
6
  Requires-Python: >=3.11
17
7
  Description-Content-Type: text/markdown
@@ -0,0 +1,37 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.stiffness: 5.0
7
+
8
+ stop_commands: false
9
+
10
+
11
+ task.k_pos_x: 2500.0
12
+ task.k_pos_y: 2500.0
13
+ task.k_pos_z: 2500.0
14
+ task.k_rot_x: 200.0
15
+ task.k_rot_y: 200.0
16
+ task.k_rot_z: 200.0
17
+
18
+ task.d_pos_x: 100.0
19
+ task.d_pos_y: 100.0
20
+ task.d_pos_z: 100.0
21
+ task.d_rot_x: 10.0
22
+ task.d_rot_y: 10.0
23
+ task.d_rot_z: 10.0
24
+
25
+ task.error_clip.rx: 0.08
26
+ task.error_clip.ry: 0.08
27
+ task.error_clip.rz: 0.08
28
+ task.error_clip.x: 0.01
29
+ task.error_clip.y: 0.01
30
+ task.error_clip.z: 0.01
31
+
32
+ use_coriolis_compensation: true
33
+ use_friction: true
34
+ use_gravity_compensation: false
35
+ use_local_jacobian: true
36
+ use_operational_space: false
37
+ use_sim_time: false
@@ -0,0 +1,36 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.stiffness: 5.0
7
+
8
+ stop_commands: false
9
+
10
+ task.k_pos_x: 600.0
11
+ task.k_pos_y: 600.0
12
+ task.k_pos_z: 600.0
13
+ task.k_rot_x: 30.0
14
+ task.k_rot_y: 30.0
15
+ task.k_rot_z: 30.0
16
+
17
+ task.d_pos_x: 60.0
18
+ task.d_pos_y: 60.0
19
+ task.d_pos_z: 60.0
20
+ task.d_rot_x: 10.0
21
+ task.d_rot_y: 10.0
22
+ task.d_rot_z: 10.0
23
+
24
+ task.error_clip.rx: 0.5
25
+ task.error_clip.ry: 0.5
26
+ task.error_clip.rz: 0.5
27
+ task.error_clip.x: 0.1
28
+ task.error_clip.y: 0.1
29
+ task.error_clip.z: 0.1
30
+
31
+ use_coriolis_compensation: true
32
+ use_friction: true
33
+ use_gravity_compensation: false
34
+ use_local_jacobian: true
35
+ use_operational_space: false
36
+ use_sim_time: false
@@ -0,0 +1,36 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.stiffness: 5.0
7
+
8
+ stop_commands: false
9
+
10
+ task.k_pos_x: 1000.0
11
+ task.k_pos_y: 1000.0
12
+ task.k_pos_z: 1000.0
13
+ task.k_rot_x: 1000.0
14
+ task.k_rot_y: 1000.0
15
+ task.k_rot_z: 1000.0
16
+
17
+ task.d_pos_x: 100.0
18
+ task.d_pos_y: 100.0
19
+ task.d_pos_z: 100.0
20
+ task.d_rot_x: 100.0
21
+ task.d_rot_y: 100.0
22
+ task.d_rot_z: 100.0
23
+
24
+ task.error_clip.rx: 0.5
25
+ task.error_clip.ry: 0.5
26
+ task.error_clip.rz: 0.5
27
+ task.error_clip.x: 0.1
28
+ task.error_clip.y: 0.1
29
+ task.error_clip.z: 0.1
30
+
31
+ use_coriolis_compensation: true
32
+ use_friction: true
33
+ use_gravity_compensation: false
34
+ use_local_jacobian: true
35
+ use_operational_space: true
36
+ use_sim_time: false
@@ -0,0 +1,36 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.stiffness: 5.0
7
+
8
+ stop_commands: false
9
+
10
+ task.k_pos_x: 0.0
11
+ task.k_pos_y: 0.0
12
+ task.k_pos_z: 0.0
13
+ task.k_rot_x: 0.0
14
+ task.k_rot_y: 0.0
15
+ task.k_rot_z: 0.0
16
+
17
+ task.d_pos_x: -1.0
18
+ task.d_pos_y: -1.0
19
+ task.d_pos_z: -1.0
20
+ task.d_rot_x: -1.0
21
+ task.d_rot_y: -1.0
22
+ task.d_rot_z: -1.0
23
+
24
+ task.error_clip.rx: 0.5
25
+ task.error_clip.ry: 0.5
26
+ task.error_clip.rz: 0.5
27
+ task.error_clip.x: 0.1
28
+ task.error_clip.y: 0.1
29
+ task.error_clip.z: 0.1
30
+
31
+ use_coriolis_compensation: true
32
+ use_friction: true
33
+ use_gravity_compensation: false
34
+ use_local_jacobian: true
35
+ use_operational_space: false
36
+ use_sim_time: false
@@ -0,0 +1,36 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.stiffness: 5.0
7
+
8
+ stop_commands: false
9
+
10
+ task.k_pos_x: 0.0
11
+ task.k_pos_y: 0.0
12
+ task.k_pos_z: 0.0
13
+ task.k_rot_x: 30.0
14
+ task.k_rot_y: 30.0
15
+ task.k_rot_z: 0.0
16
+
17
+ task.d_pos_x: 1.0
18
+ task.d_pos_y: 1.0
19
+ task.d_pos_z: 1.0
20
+ task.d_rot_x: 1.0
21
+ task.d_rot_y: 1.0
22
+ task.d_rot_z: 1.0
23
+
24
+ task.error_clip.rx: 0.5
25
+ task.error_clip.ry: 0.5
26
+ task.error_clip.rz: 0.5
27
+ task.error_clip.x: 0.1
28
+ task.error_clip.y: 0.1
29
+ task.error_clip.z: 0.1
30
+
31
+ use_coriolis_compensation: true
32
+ use_friction: false
33
+ use_gravity_compensation: false
34
+ use_local_jacobian: true
35
+ use_operational_space: false
36
+ use_sim_time: false
@@ -0,0 +1,48 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.projector_type: none # So we are directly controlling the joints!
7
+
8
+ nullspace.stiffness: 5.0
9
+ nullspace.damping: 1.0
10
+ nullspace.max_tau: 5.0
11
+ nullspace.regularization: 1.0e-06
12
+ nullspace.weights.right_fr3_joint1.value: 15.0
13
+ nullspace.weights.right_fr3_joint2.value: 15.0
14
+ nullspace.weights.right_fr3_joint3.value: 8.0
15
+ nullspace.weights.right_fr3_joint4.value: 8.0
16
+ nullspace.weights.right_fr3_joint5.value: 8.0
17
+ nullspace.weights.right_fr3_joint6.value: 5.0
18
+ nullspace.weights.right_fr3_joint7.value: 5.0
19
+
20
+ stop_commands: false
21
+
22
+ # We set the task gains to 0
23
+ task.k_pos_x: 0.0
24
+ task.k_pos_y: 0.0
25
+ task.k_pos_z: 0.0
26
+ task.k_rot_x: 0.0
27
+ task.k_rot_y: 0.0
28
+ task.k_rot_z: 0.0
29
+ task.d_pos_x: -1.0
30
+ task.d_pos_y: -1.0
31
+ task.d_pos_z: -1.0
32
+ task.d_rot_x: -1.0
33
+ task.d_rot_y: -1.0
34
+ task.d_rot_z: -1.0
35
+
36
+ task.error_clip.rx: 0.5
37
+ task.error_clip.ry: 0.5
38
+ task.error_clip.rz: 0.5
39
+ task.error_clip.x: 0.1
40
+ task.error_clip.y: 0.1
41
+ task.error_clip.z: 0.1
42
+
43
+ use_coriolis_compensation: true
44
+ use_friction: true
45
+ use_gravity_compensation: false
46
+ use_local_jacobian: true
47
+ use_operational_space: false
48
+ use_sim_time: false
@@ -0,0 +1,47 @@
1
+ limit_error: true
2
+ limit_torques: true
3
+
4
+ max_delta_tau: 0.5
5
+
6
+ nullspace.projector_type: none # So we are directly controlling the joints!
7
+ nullspace.stiffness: 0.0
8
+ nullspace.damping: 10.0
9
+ nullspace.max_tau: 5.0
10
+ nullspace.regularization: 1.0e-06
11
+ nullspace.weights.right_fr3_joint1.value: 15.0
12
+ nullspace.weights.right_fr3_joint2.value: 15.0
13
+ nullspace.weights.right_fr3_joint3.value: 8.0
14
+ nullspace.weights.right_fr3_joint4.value: 8.0
15
+ nullspace.weights.right_fr3_joint5.value: 8.0
16
+ nullspace.weights.right_fr3_joint6.value: 5.0
17
+ nullspace.weights.right_fr3_joint7.value: 5.0
18
+
19
+ stop_commands: false
20
+
21
+ # We set the task gains to 0
22
+ task.k_pos_x: 0.0
23
+ task.k_pos_y: 0.0
24
+ task.k_pos_z: 0.0
25
+ task.k_rot_x: 0.0
26
+ task.k_rot_y: 0.0
27
+ task.k_rot_z: 0.0
28
+ task.d_pos_x: -1.0
29
+ task.d_pos_y: -1.0
30
+ task.d_pos_z: -1.0
31
+ task.d_rot_x: -1.0
32
+ task.d_rot_y: -1.0
33
+ task.d_rot_z: -1.0
34
+
35
+ task.error_clip.rx: 0.5
36
+ task.error_clip.ry: 0.5
37
+ task.error_clip.rz: 0.5
38
+ task.error_clip.x: 0.1
39
+ task.error_clip.y: 0.1
40
+ task.error_clip.z: 0.1
41
+
42
+ use_coriolis_compensation: true
43
+ use_friction: true
44
+ use_gravity_compensation: false
45
+ use_local_jacobian: true
46
+ use_operational_space: false
47
+ use_sim_time: false
@@ -0,0 +1,65 @@
1
+ filter.dq: 0.5
2
+ filter.output_torque: 0.5
3
+ filter.q: 0.5
4
+ filter.target_pose: 0.1
5
+
6
+ friction.fp1:
7
+ - 0.54615
8
+ - 0.87224
9
+ - 0.64068
10
+ - 1.2794
11
+ - 0.83904
12
+ - 0.30301
13
+ - 0.56489
14
+ friction.fp2:
15
+ - 5.1181
16
+ - 9.0657
17
+ - 10.136
18
+ - 5.5903
19
+ - 8.3469
20
+ - 17.133
21
+ - 10.336
22
+ friction.fp3:
23
+ - 0.039533
24
+ - 0.025882
25
+ - -0.04607
26
+ - 0.036194
27
+ - 0.026226
28
+ - -0.021047
29
+ - 0.0035526
30
+
31
+ limit_error: true
32
+ limit_torques: true
33
+
34
+ max_delta_tau: 0.5
35
+
36
+ nullspace.stiffness: 5.0
37
+
38
+ stop_commands: false
39
+
40
+ task.k_pos_x: 600.0
41
+ task.k_pos_y: 600.0
42
+ task.k_pos_z: 600.0
43
+ task.k_rot_x: 20.0
44
+ task.k_rot_y: 20.0
45
+ task.k_rot_z: 20.0
46
+ task.d_pos_x: 20.0
47
+ task.d_pos_y: 20.0
48
+ task.d_pos_z: 20.0
49
+ task.d_rot_x: 5.0
50
+ task.d_rot_y: 5.0
51
+ task.d_rot_z: 5.0
52
+
53
+ task.error_clip.rx: 0.5
54
+ task.error_clip.ry: 0.5
55
+ task.error_clip.rz: 0.5
56
+ task.error_clip.x: 0.1
57
+ task.error_clip.y: 0.1
58
+ task.error_clip.z: 0.1
59
+
60
+ use_coriolis_compensation: true
61
+ use_friction: false
62
+ use_gravity_compensation: false
63
+ use_local_jacobian: true
64
+ use_operational_space: false
65
+ use_sim_time: false
@@ -0,0 +1,2 @@
1
+ max_value: 1.0
2
+ min_value: 0.0
@@ -0,0 +1,4 @@
1
+ joint_state_topic: gripper/gripper_state_broadcaster/joint_states
2
+ command_topic: gripper/gripper_position_controller/commands
3
+ max_value: 1.43957689579873
4
+ min_value: 0.19644546126038107
@@ -0,0 +1,2 @@
1
+ max_value: 1.5493206977844238
2
+ min_value: 0.653475821018219
@@ -0,0 +1,4 @@
1
+ joint_state_topic: gripper/gripper_state_broadcaster/joint_states
2
+ command_topic: gripper/gripper_position_controller/commands
3
+ max_value: -0.07976700087890626
4
+ min_value: -1.2977477450683594
@@ -0,0 +1,2 @@
1
+ max_value: 3.241350110796288
2
+ min_value: 2.2345671218368346
@@ -0,0 +1,2 @@
1
+ max_value: 1.0
2
+ min_value: 0.0
@@ -0,0 +1,3 @@
1
+ max_value: 1.4564589276257938
2
+ min_value: 0.20718857242305813
3
+ joint_state_topic: gripper_state_broadcaster/joint_states
@@ -0,0 +1,4 @@
1
+ joint_state_topic: gripper_state_broadcaster/joint_states
2
+ max_value: 1.10193625925745
3
+ min_value: 1.8907875646311676
4
+ index: 1
@@ -1,17 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crisp-python
3
- Version: 1.2.3
3
+ Version: 1.3.0
4
4
  Summary: Simple python interface to control robots that use crisp_controllers and other ROS2 components.
5
- License: The MIT License
6
-
7
- Copyright 2025 Learning Systems and Robotics Lab
8
-
9
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
-
15
5
  Project-URL: Homepage, https://utiasDSL.github.io/crisp_controllers/
16
6
  Requires-Python: >=3.11
17
7
  Description-Content-Type: text/markdown
@@ -0,0 +1,42 @@
1
+ LICENSE.md
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ crisp_py/__init__.py
6
+ crisp_py/robot.py
7
+ crisp_py/robot_config.py
8
+ crisp_py/camera/__init__.py
9
+ crisp_py/camera/camera.py
10
+ crisp_py/camera/camera_config.py
11
+ crisp_py/config/gripper_franka.yaml
12
+ crisp_py/config/gripper_left.yaml
13
+ crisp_py/config/gripper_left_config.yaml
14
+ crisp_py/config/gripper_right.yaml
15
+ crisp_py/config/gripper_right_config.yaml
16
+ crisp_py/config/gripper_uncalibrated.yaml
17
+ crisp_py/config/gripper_with_trigger.yaml
18
+ crisp_py/config/trigger_left.yaml
19
+ crisp_py/config/control/clipped_cartesian_impedance.yaml
20
+ crisp_py/config/control/default_cartesian_impedance.yaml
21
+ crisp_py/config/control/default_operational_space_controller.yaml
22
+ crisp_py/config/control/gravity_compensation.yaml
23
+ crisp_py/config/control/gravity_compensation_on_plane.yaml
24
+ crisp_py/config/control/joint_control.yaml
25
+ crisp_py/config/control/joint_velocity_control.yaml
26
+ crisp_py/config/control/no_friction_cartesian_impedance.yaml
27
+ crisp_py/control/__init__.py
28
+ crisp_py/control/controller_switcher.py
29
+ crisp_py/control/joint_trajectory_controller_client.py
30
+ crisp_py/control/parameters_client.py
31
+ crisp_py/gripper/__init__.py
32
+ crisp_py/gripper/gripper.py
33
+ crisp_py/sensors/sensor.py
34
+ crisp_py/sensors/sensor_config.py
35
+ crisp_py/utils/__init__.py
36
+ crisp_py/utils/callback_monitor.py
37
+ crisp_py/utils/diagnostics_viewer.py
38
+ crisp_python.egg-info/PKG-INFO
39
+ crisp_python.egg-info/SOURCES.txt
40
+ crisp_python.egg-info/dependency_links.txt
41
+ crisp_python.egg-info/requires.txt
42
+ crisp_python.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ crisp_py
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "crisp-python"
3
- version = "1.2.3"
3
+ version = "1.3.0"
4
4
  description = "Simple python interface to control robots that use crisp_controllers and other ROS2 components."
5
5
  readme = "README.md"
6
- license = { file = "LICENSE.md" }
6
+ license-files = ["LICENSE.md"]
7
7
  requires-python = ">=3.11"
8
8
  dependencies = [
9
9
  "scipy",
@@ -15,6 +15,10 @@ Homepage = "https://utiasDSL.github.io/crisp_controllers/"
15
15
 
16
16
  [tool.setuptools.packages.find]
17
17
  exclude = ["config", "examples", "build", "scripts", "media", "docs", "tests"]
18
+ include = ["crisp_py*"]
19
+
20
+ [tool.setuptools]
21
+ include-package-data = true
18
22
 
19
23
  [tool.ruff]
20
24
  exclude = [
@@ -1,32 +0,0 @@
1
- LICENSE.md
2
- README.md
3
- pyproject.toml
4
- crisp_py/__init__.py
5
- crisp_py/robot.py
6
- crisp_py/robot_config.py
7
- crisp_py/camera/__init__.py
8
- crisp_py/camera/camera.py
9
- crisp_py/camera/camera_config.py
10
- crisp_py/control/__init__.py
11
- crisp_py/control/controller_switcher.py
12
- crisp_py/control/joint_trajectory_controller_client.py
13
- crisp_py/control/parameters_client.py
14
- crisp_py/gripper/__init__.py
15
- crisp_py/gripper/gripper.py
16
- crisp_py/sensors/sensor.py
17
- crisp_py/sensors/sensor_config.py
18
- crisp_py/utils/__init__.py
19
- crisp_py/utils/callback_monitor.py
20
- crisp_py/utils/diagnostics_viewer.py
21
- crisp_python.egg-info/PKG-INFO
22
- crisp_python.egg-info/SOURCES.txt
23
- crisp_python.egg-info/dependency_links.txt
24
- crisp_python.egg-info/requires.txt
25
- crisp_python.egg-info/top_level.txt
26
- tests/unit/__init__.py
27
- tests/unit/test_camera.py
28
- tests/unit/test_gripper.py
29
- tests/unit/test_pose.py
30
- tests/unit/test_robot.py
31
- tests/unit/test_robot_config.py
32
- tests/unit/test_sensor.py
@@ -1,4 +0,0 @@
1
- config
2
- crisp_py
3
- dist
4
- tests
@@ -1 +0,0 @@
1
- """Unit test module for initializing the tests package."""