placo 0.9.3__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.5__0-cp313-cp313-macosx_11_0_arm64.whl
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.
Potentially problematic release.
This version of placo might be problematic. Click here for more details.
- cmeel.prefix/lib/liblibplaco.dylib +0 -0
- cmeel.prefix/lib/python3.13/site-packages/placo.pyi +165 -13
- cmeel.prefix/lib/python3.13/site-packages/placo.so +0 -0
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/METADATA +3 -3
- placo-0.9.5.dist-info/RECORD +12 -0
- placo-0.9.3.dist-info/RECORD +0 -12
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/WHEEL +0 -0
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -17,6 +17,7 @@ CubicSpline3D = typing.NewType("CubicSpline3D", None)
|
|
|
17
17
|
Distance = typing.NewType("Distance", None)
|
|
18
18
|
DistanceConstraint = typing.NewType("DistanceConstraint", None)
|
|
19
19
|
DistanceTask = typing.NewType("DistanceTask", None)
|
|
20
|
+
DummyWalk = typing.NewType("DummyWalk", None)
|
|
20
21
|
DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
|
|
21
22
|
DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
|
|
22
23
|
DynamicsFrameTask = typing.NewType("DynamicsFrameTask", None)
|
|
@@ -1357,6 +1358,154 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1357
1358
|
...
|
|
1358
1359
|
|
|
1359
1360
|
|
|
1361
|
+
class DummyWalk:
|
|
1362
|
+
T_world_left: any
|
|
1363
|
+
"""
|
|
1364
|
+
|
|
1365
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1366
|
+
|
|
1367
|
+
C++ signature :
|
|
1368
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1369
|
+
"""
|
|
1370
|
+
|
|
1371
|
+
T_world_next: any
|
|
1372
|
+
"""
|
|
1373
|
+
|
|
1374
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1375
|
+
|
|
1376
|
+
C++ signature :
|
|
1377
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1378
|
+
"""
|
|
1379
|
+
|
|
1380
|
+
T_world_right: any
|
|
1381
|
+
"""
|
|
1382
|
+
|
|
1383
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1384
|
+
|
|
1385
|
+
C++ signature :
|
|
1386
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1387
|
+
"""
|
|
1388
|
+
|
|
1389
|
+
def __init__(
|
|
1390
|
+
self,
|
|
1391
|
+
robot: RobotWrapper, # placo::model::RobotWrapper
|
|
1392
|
+
) -> any:
|
|
1393
|
+
...
|
|
1394
|
+
|
|
1395
|
+
feet_spacing: any
|
|
1396
|
+
"""
|
|
1397
|
+
|
|
1398
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1399
|
+
|
|
1400
|
+
C++ signature :
|
|
1401
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1402
|
+
"""
|
|
1403
|
+
|
|
1404
|
+
lift_height: any
|
|
1405
|
+
"""
|
|
1406
|
+
|
|
1407
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1408
|
+
|
|
1409
|
+
C++ signature :
|
|
1410
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1411
|
+
"""
|
|
1412
|
+
|
|
1413
|
+
def next_step(
|
|
1414
|
+
self,
|
|
1415
|
+
dx: float, # double
|
|
1416
|
+
dy: float, # double
|
|
1417
|
+
dtheta: float, # double
|
|
1418
|
+
) -> None:
|
|
1419
|
+
"""
|
|
1420
|
+
Produce the next step, change support foot.
|
|
1421
|
+
|
|
1422
|
+
:param float dx: dx
|
|
1423
|
+
|
|
1424
|
+
:param float dy: dy
|
|
1425
|
+
|
|
1426
|
+
:param float dtheta: dtheta
|
|
1427
|
+
"""
|
|
1428
|
+
...
|
|
1429
|
+
|
|
1430
|
+
def reset(
|
|
1431
|
+
self,
|
|
1432
|
+
support_left: bool = False, # bool
|
|
1433
|
+
) -> None:
|
|
1434
|
+
"""
|
|
1435
|
+
Reset the robot with a given support.
|
|
1436
|
+
|
|
1437
|
+
:param bool support_left: whether the first support is left
|
|
1438
|
+
"""
|
|
1439
|
+
...
|
|
1440
|
+
|
|
1441
|
+
robot: any
|
|
1442
|
+
"""
|
|
1443
|
+
|
|
1444
|
+
None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
|
|
1445
|
+
|
|
1446
|
+
C++ signature :
|
|
1447
|
+
placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1448
|
+
"""
|
|
1449
|
+
|
|
1450
|
+
solver: any
|
|
1451
|
+
"""
|
|
1452
|
+
|
|
1453
|
+
None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
|
|
1454
|
+
|
|
1455
|
+
C++ signature :
|
|
1456
|
+
placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1457
|
+
"""
|
|
1458
|
+
|
|
1459
|
+
support_left: any
|
|
1460
|
+
"""
|
|
1461
|
+
|
|
1462
|
+
None( (placo.DummyWalk)arg1) -> bool :
|
|
1463
|
+
|
|
1464
|
+
C++ signature :
|
|
1465
|
+
bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1466
|
+
"""
|
|
1467
|
+
|
|
1468
|
+
trunk_height: any
|
|
1469
|
+
"""
|
|
1470
|
+
|
|
1471
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1472
|
+
|
|
1473
|
+
C++ signature :
|
|
1474
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1475
|
+
"""
|
|
1476
|
+
|
|
1477
|
+
trunk_pitch: any
|
|
1478
|
+
"""
|
|
1479
|
+
|
|
1480
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1481
|
+
|
|
1482
|
+
C++ signature :
|
|
1483
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1484
|
+
"""
|
|
1485
|
+
|
|
1486
|
+
def update(
|
|
1487
|
+
self,
|
|
1488
|
+
t: float, # double
|
|
1489
|
+
) -> None:
|
|
1490
|
+
"""
|
|
1491
|
+
Updates the internal IK.
|
|
1492
|
+
|
|
1493
|
+
:param float t: phase in step from 0 to 1
|
|
1494
|
+
"""
|
|
1495
|
+
...
|
|
1496
|
+
|
|
1497
|
+
def update_T_world_support(
|
|
1498
|
+
self,
|
|
1499
|
+
T_world_support: numpy.ndarray, # Eigen::Affine3d
|
|
1500
|
+
) -> None:
|
|
1501
|
+
"""
|
|
1502
|
+
Update the support to a given world pose.
|
|
1503
|
+
|
|
1504
|
+
:param numpy.ndarray T_world_support:
|
|
1505
|
+
"""
|
|
1506
|
+
...
|
|
1507
|
+
|
|
1508
|
+
|
|
1360
1509
|
class DynamicsCoMTask:
|
|
1361
1510
|
A: any
|
|
1362
1511
|
"""
|
|
@@ -3586,9 +3735,10 @@ class FootstepsPlanner:
|
|
|
3586
3735
|
"""
|
|
3587
3736
|
...
|
|
3588
3737
|
|
|
3589
|
-
def
|
|
3738
|
+
def truncate_supports(
|
|
3590
3739
|
arg1: Supports,
|
|
3591
3740
|
arg2: int,
|
|
3741
|
+
arg3: bool,
|
|
3592
3742
|
) -> Supports:
|
|
3593
3743
|
...
|
|
3594
3744
|
|
|
@@ -3663,9 +3813,10 @@ class FootstepsPlannerNaive:
|
|
|
3663
3813
|
"""
|
|
3664
3814
|
...
|
|
3665
3815
|
|
|
3666
|
-
def
|
|
3816
|
+
def truncate_supports(
|
|
3667
3817
|
arg1: Supports,
|
|
3668
3818
|
arg2: int,
|
|
3819
|
+
arg3: bool,
|
|
3669
3820
|
) -> Supports:
|
|
3670
3821
|
...
|
|
3671
3822
|
|
|
@@ -3746,9 +3897,10 @@ class FootstepsPlannerRepetitive:
|
|
|
3746
3897
|
"""
|
|
3747
3898
|
...
|
|
3748
3899
|
|
|
3749
|
-
def
|
|
3900
|
+
def truncate_supports(
|
|
3750
3901
|
arg1: Supports,
|
|
3751
3902
|
arg2: int,
|
|
3903
|
+
arg3: bool,
|
|
3752
3904
|
) -> Supports:
|
|
3753
3905
|
...
|
|
3754
3906
|
|
|
@@ -4277,7 +4429,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4277
4429
|
"""
|
|
4278
4430
|
Computes all minimum distances between current collision pairs.
|
|
4279
4431
|
|
|
4280
|
-
:return: <Element 'para' at
|
|
4432
|
+
:return: <Element 'para' at 0x1082f64d0>
|
|
4281
4433
|
"""
|
|
4282
4434
|
...
|
|
4283
4435
|
|
|
@@ -4310,7 +4462,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4310
4462
|
|
|
4311
4463
|
:param any frame: the frame for which we want the jacobian
|
|
4312
4464
|
|
|
4313
|
-
:return: <Element 'para' at
|
|
4465
|
+
:return: <Element 'para' at 0x1082f49f0>
|
|
4314
4466
|
"""
|
|
4315
4467
|
...
|
|
4316
4468
|
|
|
@@ -4324,7 +4476,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4324
4476
|
|
|
4325
4477
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4326
4478
|
|
|
4327
|
-
:return: <Element 'para' at
|
|
4479
|
+
:return: <Element 'para' at 0x10830bce0>
|
|
4328
4480
|
"""
|
|
4329
4481
|
...
|
|
4330
4482
|
|
|
@@ -4636,7 +4788,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4636
4788
|
|
|
4637
4789
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4638
4790
|
|
|
4639
|
-
:return: <Element 'para' at
|
|
4791
|
+
:return: <Element 'para' at 0x1082f7420>
|
|
4640
4792
|
"""
|
|
4641
4793
|
...
|
|
4642
4794
|
|
|
@@ -5804,7 +5956,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
|
5804
5956
|
None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
|
|
5805
5957
|
|
|
5806
5958
|
C++ signature :
|
|
5807
|
-
placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
|
|
5959
|
+
placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
|
|
5808
5960
|
"""
|
|
5809
5961
|
|
|
5810
5962
|
scale: any
|
|
@@ -7578,7 +7730,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7578
7730
|
"""
|
|
7579
7731
|
Computes all minimum distances between current collision pairs.
|
|
7580
7732
|
|
|
7581
|
-
:return: <Element 'para' at
|
|
7733
|
+
:return: <Element 'para' at 0x108290d60>
|
|
7582
7734
|
"""
|
|
7583
7735
|
...
|
|
7584
7736
|
|
|
@@ -7592,7 +7744,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7592
7744
|
|
|
7593
7745
|
:param any frame: the frame for which we want the jacobian
|
|
7594
7746
|
|
|
7595
|
-
:return: <Element 'para' at
|
|
7747
|
+
:return: <Element 'para' at 0x108291800>
|
|
7596
7748
|
"""
|
|
7597
7749
|
...
|
|
7598
7750
|
|
|
@@ -7606,7 +7758,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7606
7758
|
|
|
7607
7759
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7608
7760
|
|
|
7609
|
-
:return: <Element 'para' at
|
|
7761
|
+
:return: <Element 'para' at 0x108292f70>
|
|
7610
7762
|
"""
|
|
7611
7763
|
...
|
|
7612
7764
|
|
|
@@ -7847,7 +7999,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7847
7999
|
|
|
7848
8000
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7849
8001
|
|
|
7850
|
-
:return: <Element 'para' at
|
|
8002
|
+
:return: <Element 'para' at 0x108290540>
|
|
7851
8003
|
"""
|
|
7852
8004
|
...
|
|
7853
8005
|
|
|
@@ -9755,4 +9907,4 @@ def wrap_angle(
|
|
|
9755
9907
|
...
|
|
9756
9908
|
|
|
9757
9909
|
|
|
9758
|
-
__groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask', 'YawConstraint'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::
|
|
9910
|
+
__groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask', 'YawConstraint'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::humanoid': ['DummyWalk', 'Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable']}
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: placo
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.5
|
|
4
4
|
Summary: PlaCo: Rhoban Planning and Control
|
|
5
5
|
Requires-Python: >= 3.9
|
|
6
6
|
License-Expression: MIT
|
|
@@ -11,12 +11,12 @@ Home-page: https://placo.readthedocs.io/en/latest/
|
|
|
11
11
|
Project-URL: Repository, https://github.com/rhoban/placo.git
|
|
12
12
|
Requires-Dist: cmeel
|
|
13
13
|
Requires-Dist: eiquadprog >= 1.2.6, < 2
|
|
14
|
-
Requires-Dist: pin
|
|
14
|
+
Requires-Dist: pin == 3.7.0
|
|
15
15
|
Requires-Dist: rhoban-cmeel-jsoncpp
|
|
16
16
|
Requires-Dist: meshcat
|
|
17
17
|
Requires-Dist: ischedule
|
|
18
18
|
Provides-Extra: build
|
|
19
|
-
Requires-Dist: pin[build]
|
|
19
|
+
Requires-Dist: pin[build] == 3.7.0 ; extra == "build"
|
|
20
20
|
Requires-Dist: doxystub >= 0.0.13 ; extra == "build"
|
|
21
21
|
Requires-Dist: cmake<4 ; extra == "build"
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=Y1FUuzaS6BxufAgtCzEblKM6mZVFRWicMlZWG9Dd8Uk,1505632
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=1eEzKYDb63HwBrOHrfJ-PvxMWQ4xh3gpRv3DnlhmCwU,201597
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=oT4YcgQWodQUl7FEoH8LVd8rSxAyz2qR7BD06_jzm8Y,6822520
|
|
4
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
+
placo-0.9.5.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.5.dist-info/METADATA,sha256=pNcn38rwrk9kss2D1sHX4snCWclHrA3yhUB-XOCX3R4,2628
|
|
10
|
+
placo-0.9.5.dist-info/WHEEL,sha256=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
11
|
+
placo-0.9.5.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.5.dist-info/RECORD,,
|
placo-0.9.3.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=SY784DdbkTDcOfrMRqbtBpa44OTfFfnnh8qvJcLlPIw,1504608
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=-wWV4RnkMeINA7ebAkBXZe5LfbeG2PGwsuLFIGqqQUk,198687
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=GLL1Dp7IIrF1hob-4NrMizqfz__sdn1vGaD4OI5dQv8,6747960
|
|
4
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
-
placo-0.9.3.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.3.dist-info/METADATA,sha256=DBHbwi-DvN5P7To0NuwzxiSbQaXooNpDsGhILdWciog,2620
|
|
10
|
-
placo-0.9.3.dist-info/WHEEL,sha256=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
11
|
-
placo-0.9.3.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|