placo 0.8.10__0-cp39-cp39-macosx_10_9_x86_64.whl → 0.9.0__0-cp39-cp39-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.9/site-packages/placo.pyi +163 -9
- cmeel.prefix/lib/python3.9/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
|
"""
|
|
@@ -4202,7 +4263,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4202
4263
|
"""
|
|
4203
4264
|
Computes all minimum distances between current collision pairs.
|
|
4204
4265
|
|
|
4205
|
-
:return: <Element 'para' at
|
|
4266
|
+
:return: <Element 'para' at 0x109eafbd0>
|
|
4206
4267
|
"""
|
|
4207
4268
|
...
|
|
4208
4269
|
|
|
@@ -4235,7 +4296,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4235
4296
|
|
|
4236
4297
|
:param any frame: the frame for which we want the jacobian
|
|
4237
4298
|
|
|
4238
|
-
:return: <Element 'para' at
|
|
4299
|
+
:return: <Element 'para' at 0x109eaf130>
|
|
4239
4300
|
"""
|
|
4240
4301
|
...
|
|
4241
4302
|
|
|
@@ -4249,7 +4310,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4249
4310
|
|
|
4250
4311
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4251
4312
|
|
|
4252
|
-
:return: <Element 'para' at
|
|
4313
|
+
:return: <Element 'para' at 0x109eb19f0>
|
|
4253
4314
|
"""
|
|
4254
4315
|
...
|
|
4255
4316
|
|
|
@@ -4561,7 +4622,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4561
4622
|
|
|
4562
4623
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4563
4624
|
|
|
4564
|
-
:return: <Element 'para' at
|
|
4625
|
+
:return: <Element 'para' at 0x109ea8cc0>
|
|
4565
4626
|
"""
|
|
4566
4627
|
...
|
|
4567
4628
|
|
|
@@ -5375,6 +5436,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5375
5436
|
"""
|
|
5376
5437
|
...
|
|
5377
5438
|
|
|
5439
|
+
def add_distance_constraint(
|
|
5440
|
+
self,
|
|
5441
|
+
frame_a: str, # std::string
|
|
5442
|
+
frame_b: str, # std::string
|
|
5443
|
+
distance_max: float, # double
|
|
5444
|
+
) -> DistanceConstraint:
|
|
5445
|
+
"""
|
|
5446
|
+
Adds a distance constraint.
|
|
5447
|
+
|
|
5448
|
+
:param str frame_a: frame A
|
|
5449
|
+
|
|
5450
|
+
:param str frame_b: frame B
|
|
5451
|
+
|
|
5452
|
+
:param float distance_max: maximum distance between the two frames
|
|
5453
|
+
"""
|
|
5454
|
+
...
|
|
5455
|
+
|
|
5378
5456
|
def add_distance_task(
|
|
5379
5457
|
self,
|
|
5380
5458
|
frame_a: str, # std::string
|
|
@@ -5579,6 +5657,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5579
5657
|
"""
|
|
5580
5658
|
...
|
|
5581
5659
|
|
|
5660
|
+
def add_yaw_constraint(
|
|
5661
|
+
self,
|
|
5662
|
+
frame_a: str, # std::string
|
|
5663
|
+
frame_b: str, # std::string
|
|
5664
|
+
alpha_max: float, # double
|
|
5665
|
+
) -> YawConstraint:
|
|
5666
|
+
"""
|
|
5667
|
+
Adds a yaw constraint.
|
|
5668
|
+
|
|
5669
|
+
:param str frame_a: frame A
|
|
5670
|
+
|
|
5671
|
+
:param str frame_b: frame B
|
|
5672
|
+
|
|
5673
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5674
|
+
"""
|
|
5675
|
+
...
|
|
5676
|
+
|
|
5582
5677
|
def clear(
|
|
5583
5678
|
self,
|
|
5584
5679
|
) -> None:
|
|
@@ -7461,7 +7556,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7461
7556
|
"""
|
|
7462
7557
|
Computes all minimum distances between current collision pairs.
|
|
7463
7558
|
|
|
7464
|
-
:return: <Element 'para' at
|
|
7559
|
+
:return: <Element 'para' at 0x108f50220>
|
|
7465
7560
|
"""
|
|
7466
7561
|
...
|
|
7467
7562
|
|
|
@@ -7475,7 +7570,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7475
7570
|
|
|
7476
7571
|
:param any frame: the frame for which we want the jacobian
|
|
7477
7572
|
|
|
7478
|
-
:return: <Element 'para' at
|
|
7573
|
+
:return: <Element 'para' at 0x108f50d10>
|
|
7479
7574
|
"""
|
|
7480
7575
|
...
|
|
7481
7576
|
|
|
@@ -7489,7 +7584,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7489
7584
|
|
|
7490
7585
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7491
7586
|
|
|
7492
|
-
:return: <Element 'para' at
|
|
7587
|
+
:return: <Element 'para' at 0x108f577c0>
|
|
7493
7588
|
"""
|
|
7494
7589
|
...
|
|
7495
7590
|
|
|
@@ -7730,7 +7825,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7730
7825
|
|
|
7731
7826
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7732
7827
|
|
|
7733
|
-
:return: <Element 'para' at
|
|
7828
|
+
:return: <Element 'para' at 0x108f4aa90>
|
|
7734
7829
|
"""
|
|
7735
7830
|
...
|
|
7736
7831
|
|
|
@@ -9313,6 +9408,65 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9313
9408
|
...
|
|
9314
9409
|
|
|
9315
9410
|
|
|
9411
|
+
class YawConstraint:
|
|
9412
|
+
def __init__(
|
|
9413
|
+
self,
|
|
9414
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9415
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9416
|
+
angle_max: float, # double
|
|
9417
|
+
) -> any:
|
|
9418
|
+
"""
|
|
9419
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9420
|
+
|
|
9421
|
+
:param any frame_a:
|
|
9422
|
+
|
|
9423
|
+
:param any frame_b:
|
|
9424
|
+
|
|
9425
|
+
:param float angle_max:
|
|
9426
|
+
"""
|
|
9427
|
+
...
|
|
9428
|
+
|
|
9429
|
+
angle_max: any
|
|
9430
|
+
"""
|
|
9431
|
+
|
|
9432
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9433
|
+
|
|
9434
|
+
C++ signature :
|
|
9435
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9436
|
+
"""
|
|
9437
|
+
|
|
9438
|
+
def configure(
|
|
9439
|
+
self,
|
|
9440
|
+
name: str, # std::string
|
|
9441
|
+
priority: str = "soft", # std::string
|
|
9442
|
+
weight: float = 1.0, # double
|
|
9443
|
+
) -> None:
|
|
9444
|
+
"""
|
|
9445
|
+
Configures the object.
|
|
9446
|
+
|
|
9447
|
+
:param str name: task name
|
|
9448
|
+
|
|
9449
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9450
|
+
|
|
9451
|
+
:param float weight: task weight
|
|
9452
|
+
"""
|
|
9453
|
+
...
|
|
9454
|
+
|
|
9455
|
+
name: any
|
|
9456
|
+
"""
|
|
9457
|
+
|
|
9458
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9459
|
+
|
|
9460
|
+
C++ signature :
|
|
9461
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9462
|
+
"""
|
|
9463
|
+
|
|
9464
|
+
priority: str
|
|
9465
|
+
"""
|
|
9466
|
+
Priority [str]
|
|
9467
|
+
"""
|
|
9468
|
+
|
|
9469
|
+
|
|
9316
9470
|
class boost_type_index:
|
|
9317
9471
|
def __init__(
|
|
9318
9472
|
) -> any:
|
|
@@ -9545,4 +9699,4 @@ def wrap_angle(
|
|
|
9545
9699
|
...
|
|
9546
9700
|
|
|
9547
9701
|
|
|
9548
|
-
__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']}
|
|
9702
|
+
__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=7kP-lffe_VcKdjrld37zHYt5SGQTQ-PKXoz4w8RbtN8,1688264
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=31omhGk-RrHbIp4Fg9ebO1z7i4IlVMXv5Kj_4uqKGRw,197867
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=QP9T_rYXGa2PQG-1K9Lp08Rv1arHxR1DGdO_GcpjQPA,7064848
|
|
4
|
+
cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.9/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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
|
|
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=OYGPs9SvZGxaPkmbACFNnvaSdKiqUoLWABXVy0i7KcE,1669120
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=fPhhrDfDQAXkHYnDf4VoZ2qAuQQI5Ln4zu0E0SpncdQ,194610
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=8YjGTyKbdtSGNEFulkjtwygd0x03uNwMNbi0xrBe22s,6991808
|
|
4
|
-
cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.9/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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
|
|
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
|