LoopStructural 1.6.5__py3-none-any.whl → 1.6.7__py3-none-any.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 LoopStructural might be problematic. Click here for more details.

Files changed (32) hide show
  1. LoopStructural/datatypes/_bounding_box.py +58 -3
  2. LoopStructural/datatypes/_point.py +32 -6
  3. LoopStructural/interpolators/__init__.py +1 -1
  4. LoopStructural/interpolators/_builders.py +141 -141
  5. LoopStructural/interpolators/_finite_difference_interpolator.py +11 -11
  6. LoopStructural/interpolators/_interpolator_builder.py +55 -0
  7. LoopStructural/interpolators/_interpolator_factory.py +7 -18
  8. LoopStructural/interpolators/supports/_3d_base_structured.py +4 -0
  9. LoopStructural/modelling/core/geological_model.py +9 -8
  10. LoopStructural/modelling/features/__init__.py +1 -0
  11. LoopStructural/modelling/features/_analytical_feature.py +23 -2
  12. LoopStructural/modelling/features/_base_geological_feature.py +17 -1
  13. LoopStructural/modelling/features/_cross_product_geological_feature.py +7 -0
  14. LoopStructural/modelling/features/_geological_feature.py +3 -1
  15. LoopStructural/modelling/features/_projected_vector_feature.py +112 -0
  16. LoopStructural/modelling/features/_structural_frame.py +6 -0
  17. LoopStructural/modelling/features/builders/_folded_feature_builder.py +2 -2
  18. LoopStructural/modelling/features/builders/_structural_frame_builder.py +2 -2
  19. LoopStructural/modelling/features/fault/_fault_function_feature.py +3 -0
  20. LoopStructural/modelling/features/fault/_fault_segment.py +10 -2
  21. LoopStructural/modelling/input/process_data.py +7 -6
  22. LoopStructural/modelling/intrusions/intrusion_feature.py +3 -0
  23. LoopStructural/utils/__init__.py +1 -1
  24. LoopStructural/utils/_surface.py +6 -1
  25. LoopStructural/utils/_transformation.py +98 -14
  26. LoopStructural/utils/colours.py +25 -2
  27. LoopStructural/version.py +1 -1
  28. {LoopStructural-1.6.5.dist-info → LoopStructural-1.6.7.dist-info}/METADATA +16 -2
  29. {LoopStructural-1.6.5.dist-info → LoopStructural-1.6.7.dist-info}/RECORD +32 -30
  30. {LoopStructural-1.6.5.dist-info → LoopStructural-1.6.7.dist-info}/WHEEL +1 -1
  31. {LoopStructural-1.6.5.dist-info → LoopStructural-1.6.7.dist-info}/LICENSE +0 -0
  32. {LoopStructural-1.6.5.dist-info → LoopStructural-1.6.7.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: LoopStructural
3
- Version: 1.6.5
3
+ Version: 1.6.7
4
4
  Summary: 3D geological modelling
5
5
  Author-email: Lachlan Grose <lachlan.grose@monash.edu>
6
6
  License: MIT
@@ -44,6 +44,20 @@ Requires-Dist: pyvista[all]; extra == "jupyter"
44
44
  Requires-Dist: tqdm; extra == "jupyter"
45
45
  Provides-Extra: inequalities
46
46
  Requires-Dist: loopsolver; extra == "inequalities"
47
+ Provides-Extra: docs
48
+ Requires-Dist: pyvista[all]; extra == "docs"
49
+ Requires-Dist: pydata-sphinx-theme; extra == "docs"
50
+ Requires-Dist: meshio; extra == "docs"
51
+ Requires-Dist: loopstructuralvisualisation[all]; extra == "docs"
52
+ Requires-Dist: networkx; extra == "docs"
53
+ Requires-Dist: scikit-learn; extra == "docs"
54
+ Requires-Dist: scikit-image; extra == "docs"
55
+ Requires-Dist: sphinx; extra == "docs"
56
+ Requires-Dist: sphinx-gallery; extra == "docs"
57
+ Requires-Dist: geoh5py; extra == "docs"
58
+ Requires-Dist: geopandas; extra == "docs"
59
+ Requires-Dist: sphinxcontrib-bibtex; extra == "docs"
60
+ Requires-Dist: myst-parser; extra == "docs"
47
61
 
48
62
  # LoopStructural: Loop3D Implicit Geological Modelling
49
63
 
@@ -1,5 +1,5 @@
1
1
  LoopStructural/__init__.py,sha256=nlJ0csTZ_xlTZrWvTKiTp3ER_XRQN6iqQ5sR94RD5QA,1331
2
- LoopStructural/version.py,sha256=LEtHSENWZLwKaCJasxjOIQSt5Y_OahmKZYacXCmyQtI,22
2
+ LoopStructural/version.py,sha256=oUc5vcFny_sz8QQQyYQ6IGYmCI8isodNnAnIYUPypOY,22
3
3
  LoopStructural/datasets/__init__.py,sha256=ylb7fzJU_DyQ73LlwQos7VamqkDSGITbbnoKg7KAOmE,677
4
4
  LoopStructural/datasets/_base.py,sha256=FB_D5ybBYHoaNbycdkpZcRffzjrrL1xp9X0k-pyob9Y,7618
5
5
  LoopStructural/datasets/_example_models.py,sha256=Zg33IeUyh4C-lC0DRMLqCDP2IrX8L-gNV1WxJwBGjzM,113
@@ -29,8 +29,8 @@ LoopStructural/datasets/data/geological_map_data/stratigraphic_order.csv,sha256=
29
29
  LoopStructural/datasets/data/geological_map_data/stratigraphic_orientations.csv,sha256=RysyqUAIjY6iIDUfTh11n9QUQWXB_qxKnZeN_DqNzlY,26745
30
30
  LoopStructural/datasets/data/geological_map_data/stratigraphic_thickness.csv,sha256=pnSmG-wL8-kxuoHo_pgpJrfTmsZOzc8L0vxpBRh3r8A,355
31
31
  LoopStructural/datatypes/__init__.py,sha256=lVg64DnynMm58qvYTjLrcyWH7vk2ngr9JGMo5FaiALI,160
32
- LoopStructural/datatypes/_bounding_box.py,sha256=nTtvNj0UiQWX-61tBH6iWS8YDzHBIqTKWHUxStkKBfU,14732
33
- LoopStructural/datatypes/_point.py,sha256=ayUVA3EuqAc3NFctiKycGehG2HPNj6ZAMbLANjnq1n4,6291
32
+ LoopStructural/datatypes/_bounding_box.py,sha256=5Gx8CGH--VjYVCBOyaill-f3bevYul2NwVtmgvj9a2A,16151
33
+ LoopStructural/datatypes/_point.py,sha256=iBajMDEod0zU85WjmHGnXf1MmB73DvDWm2fg_jK8IBA,7183
34
34
  LoopStructural/datatypes/_structured_grid.py,sha256=AwSzkoAySU8ZHGbbGTyUoU3fCXuBVQAOD_6th6v0J1o,3665
35
35
  LoopStructural/datatypes/_surface.py,sha256=3RLA6-zkWE1L3IvXdrq92Dd5asnI9Lf6ebcNmrMnn98,6445
36
36
  LoopStructural/export/exporters.py,sha256=BniZu-PqQvHqCU6GIuJQ5FPzI9Dx_T6rI8EW1pykois,17209
@@ -38,14 +38,15 @@ LoopStructural/export/file_formats.py,sha256=0xKyYSW4Jv_4jsXwusg-WO6PNUhZKd6HdWS
38
38
  LoopStructural/export/geoh5.py,sha256=TByfnHul1Rg4oB5KPnD-yCcZ-uNr4cxuYnRB_6mclnA,4253
39
39
  LoopStructural/export/gocad.py,sha256=cQ6v7ZD0CVubt3c2f9EwAYrziu5bEFSWBtx0uade5mg,3370
40
40
  LoopStructural/export/omf_wrapper.py,sha256=4vcF4WOQIVEYsWrfATgKCDh8nUybLTbrlXnCxZ_3fkU,3392
41
- LoopStructural/interpolators/__init__.py,sha256=HcQ-wOnTKFtpS02Pxd_aP9s6bgjCb7iECYYFzX1nd44,3396
41
+ LoopStructural/interpolators/__init__.py,sha256=h-m1FkkRFGCnXWJSWwFKrfgCDtmboAPvJrpXCL58Huc,3450
42
42
  LoopStructural/interpolators/_api.py,sha256=EC4ogG2uPq-z_pgNGd_eTieTl92eaZ-rjyoFwXiHL_s,7839
43
- LoopStructural/interpolators/_builders.py,sha256=6M8__gGDO-dyu3LPIwcPia1knLR5-EH0GBMLSF0Kuwc,6476
43
+ LoopStructural/interpolators/_builders.py,sha256=B49KsxB8RRN6IHDfGT43nXWe_Av1SVVT8vm2Nh1oEiQ,6758
44
44
  LoopStructural/interpolators/_discrete_fold_interpolator.py,sha256=eDe0R1lcQ0AuMcv7zlpu5c-soCv7AybIqQAuN2vFE3M,6542
45
45
  LoopStructural/interpolators/_discrete_interpolator.py,sha256=EPiEWtx8RuE75xp7umy7Py4vTiFB0xgN3EFnl44ygKM,25577
46
- LoopStructural/interpolators/_finite_difference_interpolator.py,sha256=oFchMqCSWjRquJmI0rNrtjFhre4O7PLyOLxZFE64Se4,15819
46
+ LoopStructural/interpolators/_finite_difference_interpolator.py,sha256=csjHpcDNKufFt4LUOR-ZsBEmQ4YLkFt0qd9KUqXI_T4,15950
47
47
  LoopStructural/interpolators/_geological_interpolator.py,sha256=4qPkJKWW1Kqe-U78CLR8ayLdFXq9aJZ2FB5_ntITxHk,11028
48
- LoopStructural/interpolators/_interpolator_factory.py,sha256=LSxrf7tEWek_0tNxioGHeWWwu3Ywf8Ar79M6gC75tBY,3468
48
+ LoopStructural/interpolators/_interpolator_builder.py,sha256=M-nX7qzigW0QYNqSQQkxXAdwKW9BQrL-qSdSUAWtTCc,1917
49
+ LoopStructural/interpolators/_interpolator_factory.py,sha256=WcAbLtxLs4T5tt9ysZb-lorwgVi8utNunHsRCJrJd2k,2864
49
50
  LoopStructural/interpolators/_operator.py,sha256=PZOUzq9OMaJdG151dSLIo7AxRuhTj6-zEAzFZo-EOJU,1114
50
51
  LoopStructural/interpolators/_p1interpolator.py,sha256=4rjj4iaw2c8hOfBS9u8ycxzijYdmvpeijvhYRwUwZg0,8736
51
52
  LoopStructural/interpolators/_p2interpolator.py,sha256=UT-As5RNsmOwHOzO_6FiRcAwlNHfi4ILbJw2LGpwKAw,10274
@@ -56,7 +57,7 @@ LoopStructural/interpolators/supports/_2d_p1_unstructured.py,sha256=okcy56nyjued
56
57
  LoopStructural/interpolators/supports/_2d_p2_unstructured.py,sha256=TeBVtT1PMV7CKzmnFZke37acMoFxouer20cskS7pVoE,10422
57
58
  LoopStructural/interpolators/supports/_2d_structured_grid.py,sha256=TbAV1iw2gmZ4ovSMj04GLKaDZjbxK7YAceJ4wBYn8m8,16209
58
59
  LoopStructural/interpolators/supports/_2d_structured_tetra.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- LoopStructural/interpolators/supports/_3d_base_structured.py,sha256=keZnVSK0_wmXCLkWicyIlIV7Wsy2p67OC8B2AOUIMDM,15531
60
+ LoopStructural/interpolators/supports/_3d_base_structured.py,sha256=x3IuXXryyRR_R91e4BbAN0BsbgMTR8fldfQgQR3lRmA,15712
60
61
  LoopStructural/interpolators/supports/_3d_p2_tetra.py,sha256=CqGVJRUMxbPQZDhhopNt_s9gVhMqh4YbjQyDZonoyxc,11574
61
62
  LoopStructural/interpolators/supports/_3d_structured_grid.py,sha256=0H5wh5pBcxqw3crFeXdpnaKMfbSmJNOt-v9-IQa8tSM,17286
62
63
  LoopStructural/interpolators/supports/_3d_structured_tetra.py,sha256=5zUNtvEXDvbCHZCu6Fz9WjGbnrMaq-sYJqNUufyLcq8,26505
@@ -68,26 +69,27 @@ LoopStructural/interpolators/supports/_face_table.py,sha256=Hyj4Io63NkPRN8ab9uDH
68
69
  LoopStructural/interpolators/supports/_support_factory.py,sha256=c86NnM4azWhS2ajPApePap0sFI82mZC8siVAU1fCOn4,1175
69
70
  LoopStructural/modelling/__init__.py,sha256=oW7dz6c8K1A0VcW7-mVcyqcENUrtybCb3eVUNXFvMfA,656
70
71
  LoopStructural/modelling/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- LoopStructural/modelling/core/geological_model.py,sha256=GS4VaQBdaWDn9W3hngjeUSgI83A5oDR_IjlcRQTwT_U,66120
72
- LoopStructural/modelling/features/__init__.py,sha256=qTl-jTau-nnSZ4G4Np6JkBcXB01ViXhouUo_-ImoDvk,877
73
- LoopStructural/modelling/features/_analytical_feature.py,sha256=7-wFD_h6XDE89jn_trMkLeL98nHAj_5mj802mWTIp7E,2825
74
- LoopStructural/modelling/features/_base_geological_feature.py,sha256=NUF0PbkS5hxKfTCAjlC9nJ0airmLUnkcSYniYG1rpjg,11620
75
- LoopStructural/modelling/features/_cross_product_geological_feature.py,sha256=IOcJBgQeGBOgwymcyyEdsQHHbVs23sYPpl8xavBaPZE,2781
76
- LoopStructural/modelling/features/_geological_feature.py,sha256=Migi29Qr_hjIhNYuhclSK4I_MyETwa27lHeClhDKyu0,11221
72
+ LoopStructural/modelling/core/geological_model.py,sha256=5P1T4eA-GQd5hp3t7pOO4pa7JGqdXXMk5k-OlKv3HKo,66230
73
+ LoopStructural/modelling/features/__init__.py,sha256=Vf-qd5EDBtJ1DpuXXyCcw2-wf6LWPRW5wzxDEO3vOc8,939
74
+ LoopStructural/modelling/features/_analytical_feature.py,sha256=U_g86LgQhYY2359rdsDqpvziYwqrWkc5EdvhJARiUWo,3597
75
+ LoopStructural/modelling/features/_base_geological_feature.py,sha256=t6x2Vdhv9KeQ4xoeXUxAKHXwGiBl_WwHu4XAZBGQTWg,11964
76
+ LoopStructural/modelling/features/_cross_product_geological_feature.py,sha256=9vfqNs9y4VqKP066L0_Cw4fYPYXx4UDCH7cTGdimitA,3021
77
+ LoopStructural/modelling/features/_geological_feature.py,sha256=lh7XzTQZJioda81I9WMKnRgbxWI-RM0vkUpNPfr_i_U,11340
77
78
  LoopStructural/modelling/features/_lambda_geological_feature.py,sha256=pEfLN9HcYGluxRB7LJpcKdYqXP_Mkyo1pLZ3kZZ4mvA,2599
79
+ LoopStructural/modelling/features/_projected_vector_feature.py,sha256=5y1rMq3ZGG4ObSIQBcqFW_E0mfiKlFPoEdWjjnhrpwk,3017
78
80
  LoopStructural/modelling/features/_region.py,sha256=TB4qnoTDQM2VgRjgyODN839fKe3kuRYLllJj0xnDKXo,478
79
- LoopStructural/modelling/features/_structural_frame.py,sha256=Jl89dL_GsGWvtXibAr4zitVChKw9sog0-Rs9QMHw8q4,4802
81
+ LoopStructural/modelling/features/_structural_frame.py,sha256=e3QmNHLwuZc5PX3rLafocmBLNTclO90AXB4BRILCFC4,5044
80
82
  LoopStructural/modelling/features/_unconformity_feature.py,sha256=6SAgPkjipRR0Wo4aXblKyT2YuIphZc6ys1rbLXt4Umw,2409
81
83
  LoopStructural/modelling/features/builders/__init__.py,sha256=Gqld1C-PcaXfJ8vpkWMDCmehmd3hZNYQk1knPtl59Bk,266
82
84
  LoopStructural/modelling/features/builders/_base_builder.py,sha256=ImlKZs4sFSrtAAp1NEpQD35AKF_mLEHr7jj2DzSyAd4,3561
83
85
  LoopStructural/modelling/features/builders/_fault_builder.py,sha256=EyDLyovrnxqSk11zWFnViok7lXMt_E-pG2QqgRgvOLk,25653
84
- LoopStructural/modelling/features/builders/_folded_feature_builder.py,sha256=ZIhzQV0ZRFfZF_3zJGMyMPk-xVmCro5k2HJCzB790gA,6535
86
+ LoopStructural/modelling/features/builders/_folded_feature_builder.py,sha256=1_0BVTzcvmFl6K3_lX-jF0tiMFPmS8j6vPeSLn9MbrE,6607
85
87
  LoopStructural/modelling/features/builders/_geological_feature_builder.py,sha256=Js3NgfbFipZrTmKrIMKsNpRE5EeBxy0_TmGz3ytO5YA,21628
86
- LoopStructural/modelling/features/builders/_structural_frame_builder.py,sha256=1SS_wrnkmaP7NTvTyHGTkuYaaU2Vc-_XmpmxS-CQrwg,7762
88
+ LoopStructural/modelling/features/builders/_structural_frame_builder.py,sha256=yxHVUqgQHZtAXtgnzaf_ZWTE-BhixoPD78vpQpK7Az4,7776
87
89
  LoopStructural/modelling/features/fault/__init__.py,sha256=4u0KfYzmoO-ddFGo9qd9ov0gBoLqBiPAUsaw5zhEOAQ,189
88
90
  LoopStructural/modelling/features/fault/_fault_function.py,sha256=5IzVyvv1tS5Z6geMB8FdTZpGrBYbyu38cOH03NACm0o,12797
89
- LoopStructural/modelling/features/fault/_fault_function_feature.py,sha256=1F_xGGRtLZ7mBnXutEGkwWoJImSEPUuxstf0Nu-7k5w,2452
90
- LoopStructural/modelling/features/fault/_fault_segment.py,sha256=upZtkxdOPkR1bxum8MO8xUbJo_e3HRvl3JTJD1Y-L50,17723
91
+ LoopStructural/modelling/features/fault/_fault_function_feature.py,sha256=4m0jVNx7ewrVI0pECI1wNciv8Cy8FzhZrYDjKJ_e2GU,2558
92
+ LoopStructural/modelling/features/fault/_fault_segment.py,sha256=mxT7305WNuBDtxBErlZ1RCinoQyoxfs5P5PI3_mKLLc,17882
91
93
  LoopStructural/modelling/features/fold/__init__.py,sha256=mOq_K5IHjE3FoK7dhYpljUMGj0gvEX2Fyqtzjd4EYfQ,176
92
94
  LoopStructural/modelling/features/fold/_fold.py,sha256=bPnnLUSiF4uoMRg8aHoOSTPRgaM0JyLoRQPu5_A-J3w,5448
93
95
  LoopStructural/modelling/features/fold/_fold_rotation_angle_feature.py,sha256=CXLbFRQ3CrTMAcHmfdbKcmSvvLs9_6TLe0Wqi1pK2tg,892
@@ -101,19 +103,19 @@ LoopStructural/modelling/features/fold/fold_function/_trigo_fold_rotation_angle.
101
103
  LoopStructural/modelling/input/__init__.py,sha256=HhJM3V5b-8_64LiRbF3Bd1pjWhJlcknxMSMPRrqZ0-I,153
102
104
  LoopStructural/modelling/input/fault_network.py,sha256=0uxl7lOySdhMhNXoiOkuiHIXqAz1Ls0j-W65cmdQoP8,2348
103
105
  LoopStructural/modelling/input/map2loop_processor.py,sha256=T7Fgqd7FNJWylLKvfIniRZBMRMeAoP8iU330-WYU8Fg,7031
104
- LoopStructural/modelling/input/process_data.py,sha256=dmA6F-l8nvdH3Ckp5OaAjl3NJoWgm3PuELdXtBRGrz8,26149
106
+ LoopStructural/modelling/input/process_data.py,sha256=E0US-Rh9dlUdXejfimcLPsBIBfa6Xx6Nwm6VEMNeVUM,26269
105
107
  LoopStructural/modelling/input/project_file.py,sha256=WhJkMfDK9uE7MK7HK-YK6ZOBAdwLX5P7ThZgXj444Eg,4604
106
108
  LoopStructural/modelling/intrusions/__init__.py,sha256=EpZK3cHJwGQhPUYIwKCKu8vkNdt_nOgWF0zfhiqDYDA,712
107
109
  LoopStructural/modelling/intrusions/geom_conceptual_models.py,sha256=jwTlhYySUj7z4DEnJoi4AINZB_N3-SW6ONRFL66OsW0,3665
108
110
  LoopStructural/modelling/intrusions/geometric_scaling_functions.py,sha256=PK3qf0TiK-WYIBGG7fYhTD1hwlUN0s75BK8d53SLYuQ,3209
109
111
  LoopStructural/modelling/intrusions/intrusion_builder.py,sha256=1cJjPyRUf3ZDkpwgGJ7TvY-kpqFgG9pXD8yrGfhqwYg,26381
110
- LoopStructural/modelling/intrusions/intrusion_feature.py,sha256=5DFQ1uccX7Rp3PMc_pidw-HixDtKyiRhfLkIUye_Gcc,15455
112
+ LoopStructural/modelling/intrusions/intrusion_feature.py,sha256=ESjtikHFJQzUnowbYiY7UZ_kYdV2QHobQoRJ2far9Vc,15489
111
113
  LoopStructural/modelling/intrusions/intrusion_frame_builder.py,sha256=Q1TPHxREcrO7Rw71nUfACZHfYnISLjqlgkUNTPT324k,40143
112
114
  LoopStructural/modelling/intrusions/intrusion_support_functions.py,sha256=wodakheMD62WJyoKnyX8UO-C1pje0I-5kHQEoDqShzo,13951
113
- LoopStructural/utils/__init__.py,sha256=-tyTlOr939RMgya5LW4HY-lELviTgClPAZt8L0AAE4s,905
114
- LoopStructural/utils/_surface.py,sha256=fPJIHVk8gs6Ws3kEW1L4gTZS8znZTNrEm8WVdtm0ZII,5721
115
- LoopStructural/utils/_transformation.py,sha256=7iDPMIBoZ73ZGa_slbC9XzdMQ-ONOxvF7UkY4dJaw54,2443
116
- LoopStructural/utils/colours.py,sha256=39MKnLiama0Ubhlxjhau8KtUGqBrluW0vw25qhuyJS0,552
115
+ LoopStructural/utils/__init__.py,sha256=OJqNSu40SYJeC26IhoBBXDqQOogWjMGA-YokKVRrwMs,924
116
+ LoopStructural/utils/_surface.py,sha256=Slz5CvH1KkMq1ycWHILQ_elNoLmzDFdZ2LdDL2q9Ml4,5962
117
+ LoopStructural/utils/_transformation.py,sha256=lLoH3FlLjR9vVjc1-64ANL_53kWPU7qu8WVsG9K1wLw,4806
118
+ LoopStructural/utils/colours.py,sha256=oitN14y56gj6ALuuwqAyOBUzSAnr1mAmCHX3KigBf2Y,1160
117
119
  LoopStructural/utils/config.py,sha256=ITGOtZTo2_QBwXkG_0AFANfE90J9siCXLzxypVmg9QA,414
118
120
  LoopStructural/utils/dtm_creator.py,sha256=-yqGG0wyEJfTCCDghz058wull1q3zGFASjeu8oDgYnk,535
119
121
  LoopStructural/utils/exceptions.py,sha256=SJboJ7ncMqVX-ib7MMizClwMrFZRHQhjZr2eCnVwnQE,500
@@ -127,8 +129,8 @@ LoopStructural/utils/regions.py,sha256=LvcOCPudF4u95-GKBOZqXVxOEcR3cOFgFpcs5x43s
127
129
  LoopStructural/utils/typing.py,sha256=29uVSTZdzXXH-jdlaYyBWZ1gQ2-nlZ2-XoVgG_PXNFY,157
128
130
  LoopStructural/utils/utils.py,sha256=2Z4zVE6G752-SPmM29zebk82bROJxEwi_YiiJjcVED4,2438
129
131
  LoopStructural/visualisation/__init__.py,sha256=5BDgKor8-ae6DrS7IZybJ3Wq_pTnCchxuY4EgzA7v1M,318
130
- LoopStructural-1.6.5.dist-info/LICENSE,sha256=ZqGeNFOgmYevj7Ld7Q-kR4lAxWXuBRUdUmPC6XM_py8,1071
131
- LoopStructural-1.6.5.dist-info/METADATA,sha256=69VHE2kjFbIx1loVcB7tV9ExJw14OgGDMka_633-Mzs,5781
132
- LoopStructural-1.6.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
133
- LoopStructural-1.6.5.dist-info/top_level.txt,sha256=QtQErKzYHfg6ddxTQ1NyaTxXBVM6qAqrM_vxEPyXZLg,15
134
- LoopStructural-1.6.5.dist-info/RECORD,,
132
+ LoopStructural-1.6.7.dist-info/LICENSE,sha256=ZqGeNFOgmYevj7Ld7Q-kR4lAxWXuBRUdUmPC6XM_py8,1071
133
+ LoopStructural-1.6.7.dist-info/METADATA,sha256=xVYOcF6LshQkc80XhhKhtWy91pHJPujawm-NUKhTe_0,6399
134
+ LoopStructural-1.6.7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
135
+ LoopStructural-1.6.7.dist-info/top_level.txt,sha256=QtQErKzYHfg6ddxTQ1NyaTxXBVM6qAqrM_vxEPyXZLg,15
136
+ LoopStructural-1.6.7.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5