placo 0.8.10__0-cp312-cp312-macosx_10_9_x86_64.whl → 0.9.0__0-cp312-cp312-macosx_10_9_x86_64.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.12/site-packages/placo.pyi +163 -9
- cmeel.prefix/lib/python3.12/site-packages/placo.so +0 -0
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/METADATA +1 -1
- placo-0.9.0.dist-info/RECORD +12 -0
- placo-0.8.10.dist-info/RECORD +0 -12
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/WHEEL +0 -0
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/licenses/LICENSE +0 -0
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -15,6 +15,7 @@ Contact6D = typing.NewType("Contact6D", None)
|
|
|
15
15
|
CubicSpline = typing.NewType("CubicSpline", None)
|
|
16
16
|
CubicSpline3D = typing.NewType("CubicSpline3D", None)
|
|
17
17
|
Distance = typing.NewType("Distance", None)
|
|
18
|
+
DistanceConstraint = typing.NewType("DistanceConstraint", None)
|
|
18
19
|
DistanceTask = typing.NewType("DistanceTask", None)
|
|
19
20
|
DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
|
|
20
21
|
DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
|
|
@@ -90,6 +91,7 @@ WPGTrajectoryPart = typing.NewType("WPGTrajectoryPart", None)
|
|
|
90
91
|
WalkPatternGenerator = typing.NewType("WalkPatternGenerator", None)
|
|
91
92
|
WalkTasks = typing.NewType("WalkTasks", None)
|
|
92
93
|
WheelTask = typing.NewType("WheelTask", None)
|
|
94
|
+
YawConstraint = typing.NewType("YawConstraint", None)
|
|
93
95
|
boost_type_index = typing.NewType("boost_type_index", None)
|
|
94
96
|
map_indexing_suite_map_string_double_entry = typing.NewType("map_indexing_suite_map_string_double_entry", None)
|
|
95
97
|
map_string_double = typing.NewType("map_string_double", None)
|
|
@@ -1183,6 +1185,65 @@ None( (placo.Distance)arg1) -> object :
|
|
|
1183
1185
|
"""
|
|
1184
1186
|
|
|
1185
1187
|
|
|
1188
|
+
class DistanceConstraint:
|
|
1189
|
+
def __init__(
|
|
1190
|
+
self,
|
|
1191
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
1192
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
1193
|
+
distance_max: float, # double
|
|
1194
|
+
) -> any:
|
|
1195
|
+
"""
|
|
1196
|
+
Constraints the distance betweek two points in the robot.
|
|
1197
|
+
|
|
1198
|
+
:param any frame_a:
|
|
1199
|
+
|
|
1200
|
+
:param any frame_b:
|
|
1201
|
+
|
|
1202
|
+
:param float distance_max:
|
|
1203
|
+
"""
|
|
1204
|
+
...
|
|
1205
|
+
|
|
1206
|
+
def configure(
|
|
1207
|
+
self,
|
|
1208
|
+
name: str, # std::string
|
|
1209
|
+
priority: str = "soft", # std::string
|
|
1210
|
+
weight: float = 1.0, # double
|
|
1211
|
+
) -> None:
|
|
1212
|
+
"""
|
|
1213
|
+
Configures the object.
|
|
1214
|
+
|
|
1215
|
+
:param str name: task name
|
|
1216
|
+
|
|
1217
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
1218
|
+
|
|
1219
|
+
:param float weight: task weight
|
|
1220
|
+
"""
|
|
1221
|
+
...
|
|
1222
|
+
|
|
1223
|
+
distance_max: any
|
|
1224
|
+
"""
|
|
1225
|
+
|
|
1226
|
+
None( (placo.DistanceConstraint)arg1) -> float :
|
|
1227
|
+
|
|
1228
|
+
C++ signature :
|
|
1229
|
+
double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
|
|
1230
|
+
"""
|
|
1231
|
+
|
|
1232
|
+
name: any
|
|
1233
|
+
"""
|
|
1234
|
+
|
|
1235
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
1236
|
+
|
|
1237
|
+
C++ signature :
|
|
1238
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1239
|
+
"""
|
|
1240
|
+
|
|
1241
|
+
priority: str
|
|
1242
|
+
"""
|
|
1243
|
+
Priority [str]
|
|
1244
|
+
"""
|
|
1245
|
+
|
|
1246
|
+
|
|
1186
1247
|
class DistanceTask:
|
|
1187
1248
|
A: any
|
|
1188
1249
|
"""
|
|
@@ -4210,7 +4271,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4210
4271
|
"""
|
|
4211
4272
|
Computes all minimum distances between current collision pairs.
|
|
4212
4273
|
|
|
4213
|
-
:return: <Element 'para' at
|
|
4274
|
+
:return: <Element 'para' at 0x1109ef3d0>
|
|
4214
4275
|
"""
|
|
4215
4276
|
...
|
|
4216
4277
|
|
|
@@ -4243,7 +4304,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4243
4304
|
|
|
4244
4305
|
:param any frame: the frame for which we want the jacobian
|
|
4245
4306
|
|
|
4246
|
-
:return: <Element 'para' at
|
|
4307
|
+
:return: <Element 'para' at 0x1109ef240>
|
|
4247
4308
|
"""
|
|
4248
4309
|
...
|
|
4249
4310
|
|
|
@@ -4257,7 +4318,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4257
4318
|
|
|
4258
4319
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4259
4320
|
|
|
4260
|
-
:return: <Element 'para' at
|
|
4321
|
+
:return: <Element 'para' at 0x110b7d490>
|
|
4261
4322
|
"""
|
|
4262
4323
|
...
|
|
4263
4324
|
|
|
@@ -4569,7 +4630,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4569
4630
|
|
|
4570
4631
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4571
4632
|
|
|
4572
|
-
:return: <Element 'para' at
|
|
4633
|
+
:return: <Element 'para' at 0x1109ec450>
|
|
4573
4634
|
"""
|
|
4574
4635
|
...
|
|
4575
4636
|
|
|
@@ -5391,6 +5452,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5391
5452
|
"""
|
|
5392
5453
|
...
|
|
5393
5454
|
|
|
5455
|
+
def add_distance_constraint(
|
|
5456
|
+
self,
|
|
5457
|
+
frame_a: str, # std::string
|
|
5458
|
+
frame_b: str, # std::string
|
|
5459
|
+
distance_max: float, # double
|
|
5460
|
+
) -> DistanceConstraint:
|
|
5461
|
+
"""
|
|
5462
|
+
Adds a distance constraint.
|
|
5463
|
+
|
|
5464
|
+
:param str frame_a: frame A
|
|
5465
|
+
|
|
5466
|
+
:param str frame_b: frame B
|
|
5467
|
+
|
|
5468
|
+
:param float distance_max: maximum distance between the two frames
|
|
5469
|
+
"""
|
|
5470
|
+
...
|
|
5471
|
+
|
|
5394
5472
|
def add_distance_task(
|
|
5395
5473
|
self,
|
|
5396
5474
|
frame_a: str, # std::string
|
|
@@ -5595,6 +5673,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5595
5673
|
"""
|
|
5596
5674
|
...
|
|
5597
5675
|
|
|
5676
|
+
def add_yaw_constraint(
|
|
5677
|
+
self,
|
|
5678
|
+
frame_a: str, # std::string
|
|
5679
|
+
frame_b: str, # std::string
|
|
5680
|
+
alpha_max: float, # double
|
|
5681
|
+
) -> YawConstraint:
|
|
5682
|
+
"""
|
|
5683
|
+
Adds a yaw constraint.
|
|
5684
|
+
|
|
5685
|
+
:param str frame_a: frame A
|
|
5686
|
+
|
|
5687
|
+
:param str frame_b: frame B
|
|
5688
|
+
|
|
5689
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5690
|
+
"""
|
|
5691
|
+
...
|
|
5692
|
+
|
|
5598
5693
|
def clear(
|
|
5599
5694
|
self,
|
|
5600
5695
|
) -> None:
|
|
@@ -7477,7 +7572,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7477
7572
|
"""
|
|
7478
7573
|
Computes all minimum distances between current collision pairs.
|
|
7479
7574
|
|
|
7480
|
-
:return: <Element 'para' at
|
|
7575
|
+
:return: <Element 'para' at 0x1109ccb80>
|
|
7481
7576
|
"""
|
|
7482
7577
|
...
|
|
7483
7578
|
|
|
@@ -7491,7 +7586,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7491
7586
|
|
|
7492
7587
|
:param any frame: the frame for which we want the jacobian
|
|
7493
7588
|
|
|
7494
|
-
:return: <Element 'para' at
|
|
7589
|
+
:return: <Element 'para' at 0x1109cd620>
|
|
7495
7590
|
"""
|
|
7496
7591
|
...
|
|
7497
7592
|
|
|
@@ -7505,7 +7600,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7505
7600
|
|
|
7506
7601
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7507
7602
|
|
|
7508
|
-
:return: <Element 'para' at
|
|
7603
|
+
:return: <Element 'para' at 0x1109ced90>
|
|
7509
7604
|
"""
|
|
7510
7605
|
...
|
|
7511
7606
|
|
|
@@ -7746,7 +7841,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7746
7841
|
|
|
7747
7842
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7748
7843
|
|
|
7749
|
-
:return: <Element 'para' at
|
|
7844
|
+
:return: <Element 'para' at 0x1109cc360>
|
|
7750
7845
|
"""
|
|
7751
7846
|
...
|
|
7752
7847
|
|
|
@@ -9329,6 +9424,65 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9329
9424
|
...
|
|
9330
9425
|
|
|
9331
9426
|
|
|
9427
|
+
class YawConstraint:
|
|
9428
|
+
def __init__(
|
|
9429
|
+
self,
|
|
9430
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9431
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9432
|
+
angle_max: float, # double
|
|
9433
|
+
) -> any:
|
|
9434
|
+
"""
|
|
9435
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9436
|
+
|
|
9437
|
+
:param any frame_a:
|
|
9438
|
+
|
|
9439
|
+
:param any frame_b:
|
|
9440
|
+
|
|
9441
|
+
:param float angle_max:
|
|
9442
|
+
"""
|
|
9443
|
+
...
|
|
9444
|
+
|
|
9445
|
+
angle_max: any
|
|
9446
|
+
"""
|
|
9447
|
+
|
|
9448
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9449
|
+
|
|
9450
|
+
C++ signature :
|
|
9451
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9452
|
+
"""
|
|
9453
|
+
|
|
9454
|
+
def configure(
|
|
9455
|
+
self,
|
|
9456
|
+
name: str, # std::string
|
|
9457
|
+
priority: str = "soft", # std::string
|
|
9458
|
+
weight: float = 1.0, # double
|
|
9459
|
+
) -> None:
|
|
9460
|
+
"""
|
|
9461
|
+
Configures the object.
|
|
9462
|
+
|
|
9463
|
+
:param str name: task name
|
|
9464
|
+
|
|
9465
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9466
|
+
|
|
9467
|
+
:param float weight: task weight
|
|
9468
|
+
"""
|
|
9469
|
+
...
|
|
9470
|
+
|
|
9471
|
+
name: any
|
|
9472
|
+
"""
|
|
9473
|
+
|
|
9474
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9475
|
+
|
|
9476
|
+
C++ signature :
|
|
9477
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9478
|
+
"""
|
|
9479
|
+
|
|
9480
|
+
priority: str
|
|
9481
|
+
"""
|
|
9482
|
+
Priority [str]
|
|
9483
|
+
"""
|
|
9484
|
+
|
|
9485
|
+
|
|
9332
9486
|
class boost_type_index:
|
|
9333
9487
|
def __init__(
|
|
9334
9488
|
) -> any:
|
|
@@ -9561,4 +9715,4 @@ def wrap_angle(
|
|
|
9561
9715
|
...
|
|
9562
9716
|
|
|
9563
9717
|
|
|
9564
|
-
__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', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
|
|
9718
|
+
__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::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=VphQS7z78s5mzPOGuKSHVCrxZowHvV_p6eMkJI5zJrI,1688168
|
|
2
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=BiqKexNlHbDign06WpxMwC5fwu4VDzbQIPw2KzcRgXo,198021
|
|
3
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=zaEPOxgO6yWZNq6Vz30QNr3rEuNKr_CzCSi_Im7L1Hs,7185608
|
|
4
|
+
cmeel.prefix/lib/python3.12/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.12/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.12/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.12/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
+
placo-0.9.0.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.0.dist-info/METADATA,sha256=TPffHbvHnORg7JqUME69Tzf179PvC5sokN6xY2AhY5g,2620
|
|
10
|
+
placo-0.9.0.dist-info/WHEEL,sha256=Sqf3gwTthYgQbNGLomBkKenghFmujcvJculTyZplbWQ,112
|
|
11
|
+
placo-0.9.0.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.0.dist-info/RECORD,,
|
placo-0.8.10.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=CiZ7H1waXN1cLcWeNU6-tvoUOzVRy5uSkVjn1iqMxVQ,1669024
|
|
2
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=ZaqaQoqM4CpkOrbPB13crgA91CWZ7gn9TWuzJodDyS4,194764
|
|
3
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=fQMI6X_fw1udREfO1NUaSO3BxzntbQP7gFCfJtUEbBQ,7095584
|
|
4
|
-
cmeel.prefix/lib/python3.12/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.12/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.12/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.12/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
-
placo-0.8.10.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.8.10.dist-info/METADATA,sha256=1LTdooqrP_YI0_MPBR5qsfSucytLvTeG84QY0MxVZ_A,2621
|
|
10
|
-
placo-0.8.10.dist-info/WHEEL,sha256=Sqf3gwTthYgQbNGLomBkKenghFmujcvJculTyZplbWQ,112
|
|
11
|
-
placo-0.8.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.8.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|