amulet-core 2.0a9__1.AppleClang.15.0.0.15000309-cp313-cp313-macosx_11_0_universal2.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 amulet-core might be problematic. Click here for more details.

Files changed (44) hide show
  1. amulet/core/__init__.py +36 -0
  2. amulet/core/__pyinstaller/__init__.py +2 -0
  3. amulet/core/__pyinstaller/hook-amulet.core.py +4 -0
  4. amulet/core/_amulet_core.cpython-313-darwin.so +0 -0
  5. amulet/core/_amulet_core.pyi +7 -0
  6. amulet/core/_version.py +21 -0
  7. amulet/core/amulet_coreConfig.cmake +18 -0
  8. amulet/core/biome/__init__.pyi +75 -0
  9. amulet/core/biome/biome.hpp +53 -0
  10. amulet/core/block/__init__.pyi +270 -0
  11. amulet/core/block/block.hpp +156 -0
  12. amulet/core/block_entity/__init__.pyi +78 -0
  13. amulet/core/block_entity/block_entity.hpp +84 -0
  14. amulet/core/chunk/__init__.pyi +67 -0
  15. amulet/core/chunk/chunk.hpp +126 -0
  16. amulet/core/chunk/component/__init__.pyi +18 -0
  17. amulet/core/chunk/component/biome_3d_component.hpp +96 -0
  18. amulet/core/chunk/component/block_component.hpp +101 -0
  19. amulet/core/chunk/component/block_component.pyi +28 -0
  20. amulet/core/chunk/component/block_entity_component.hpp +119 -0
  21. amulet/core/chunk/component/section_array_map.hpp +129 -0
  22. amulet/core/chunk/component/section_array_map.pyi +77 -0
  23. amulet/core/dll.hpp +21 -0
  24. amulet/core/entity/__init__.pyi +105 -0
  25. amulet/core/entity/entity.hpp +100 -0
  26. amulet/core/libamulet_core.dylib +0 -0
  27. amulet/core/palette/__init__.pyi +8 -0
  28. amulet/core/palette/biome_palette.hpp +65 -0
  29. amulet/core/palette/biome_palette.pyi +45 -0
  30. amulet/core/palette/block_palette.hpp +71 -0
  31. amulet/core/palette/block_palette.pyi +47 -0
  32. amulet/core/py.typed +0 -0
  33. amulet/core/selection/__init__.pyi +8 -0
  34. amulet/core/selection/box.hpp +86 -0
  35. amulet/core/selection/box.pyi +215 -0
  36. amulet/core/selection/group.hpp +80 -0
  37. amulet/core/selection/group.pyi +213 -0
  38. amulet/core/version/__init__.pyi +134 -0
  39. amulet/core/version/version.hpp +204 -0
  40. amulet_core-2.0a9.dist-info/METADATA +109 -0
  41. amulet_core-2.0a9.dist-info/RECORD +44 -0
  42. amulet_core-2.0a9.dist-info/WHEEL +6 -0
  43. amulet_core-2.0a9.dist-info/entry_points.txt +2 -0
  44. amulet_core-2.0a9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,44 @@
1
+ amulet/core/__init__.py,sha256=pfhPDVh2laUpJHVmUkoeX-q1P4szpIOsNoL0FdoVCu4,915
2
+ amulet/core/_amulet_core.cpython-313-darwin.so,sha256=CbAAUaGPn1jbsjq-LrdcMvw97ct2p9VH0SddP0y2thY,1641232
3
+ amulet/core/_amulet_core.pyi,sha256=6KCygVcKCdfcpjegv7RMDgxKh9M6F-IHNhPUNGZAlyQ,123
4
+ amulet/core/_version.py,sha256=13jQXTTjaGjES_lpmaamDIy-QdcMdm-M-xWylsIIWv4,497
5
+ amulet/core/amulet_coreConfig.cmake,sha256=eCpbb2Z3J1mDKeDwZGHf7LqsflWwJaYiDN-Fda_TmEc,714
6
+ amulet/core/dll.hpp,sha256=pyhd9lh570R1Qi7TPPnKoiB-fAFmQan8Vnk-oZmuK70,586
7
+ amulet/core/libamulet_core.dylib,sha256=iMWOv2w_eUyE_xFaz0ODOeylfumbCL8eS4LLiywj9RY,1335304
8
+ amulet/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ amulet/core/__pyinstaller/__init__.py,sha256=vNM3T3GSrs58ywzILHdIsQP2sglKq6Jn4qwCGC3CZVQ,56
10
+ amulet/core/__pyinstaller/hook-amulet.core.py,sha256=AmV845T4BRjex63_T_KCeKLUlV0DxEk6aWsUJaLqyGE,172
11
+ amulet/core/biome/__init__.pyi,sha256=rRxGRmd4vq1BlYysmo0SdRYEVzNzyGTbn_hpRHrrdIk,2157
12
+ amulet/core/biome/biome.hpp,sha256=6RftLCHa4jVLr3lmRU8RIuA4K5REU-1J8SmJts7Ty0Y,1539
13
+ amulet/core/block/__init__.pyi,sha256=BMiVVmYDzFABg-Y5I0T7YcmLZRK8N-AL2YCcFD7Ue8w,9592
14
+ amulet/core/block/block.hpp,sha256=iRZyFKwfM7tbiXaHN6MNZeedpVr8SZkkKPPm20Tkgbo,4702
15
+ amulet/core/block_entity/__init__.pyi,sha256=95L-jlRnn4hTin13m_7f72M0uFkP4DQNE1T1PsA3eys,2159
16
+ amulet/core/block_entity/block_entity.hpp,sha256=q_8rzz4JCQ-L4q025G-ooQ2G47Hf6hyn3Wou4GZZ1Dc,2277
17
+ amulet/core/chunk/__init__.pyi,sha256=3CXjNyVx1FXuUeAZ0MdQgwPeFMY_63incYHG3IQxwqY,1946
18
+ amulet/core/chunk/chunk.hpp,sha256=r3s5nPd60XwTyulG8xA7VdPH72OwDFwD-32faKp75ds,3915
19
+ amulet/core/chunk/component/__init__.pyi,sha256=stjIjJy7yTVxicTbxsUh6H_57BvHRiNexqTWA0khlyQ,450
20
+ amulet/core/chunk/component/biome_3d_component.hpp,sha256=Dx-16Qg1LsGSvxDSN7PmBpDvaUnXMzKEYAFPshuQmvw,3138
21
+ amulet/core/chunk/component/block_component.hpp,sha256=JFk1O1IBWWX9-blvQN0Kv1xNUuWYWpMxkPB6jzIoG2w,3361
22
+ amulet/core/chunk/component/block_component.pyi,sha256=Yn19Tm9S-ekqXJGcwOMBe3fiAgvZDT7GkVvBHjhdaIY,839
23
+ amulet/core/chunk/component/block_entity_component.hpp,sha256=wCv7Im03GqPoTLmtt0bmvxrS12kJN_qjzqONuRZ2YmE,3918
24
+ amulet/core/chunk/component/section_array_map.hpp,sha256=V_WAG56rz3SAUWMMLgoPAhY3faH3t4Egg9_PsSERueE,3855
25
+ amulet/core/chunk/component/section_array_map.pyi,sha256=8Ws6Amv9WlDkJh-_WDY5ruT2IHaupnUo6jsnywbdtqs,2718
26
+ amulet/core/entity/__init__.pyi,sha256=YNHd5CO245N678jRMkIRryt8BmMqwVqIglEx0UZ77VQ,2573
27
+ amulet/core/entity/entity.hpp,sha256=02TsWsA2XNmULM92lx0Wby-exVur4Myncu_IY_a2KQ4,2911
28
+ amulet/core/palette/__init__.pyi,sha256=_QLcDg5WSp-Y67CAUoa-EmA6zptftMvJtX8FfeDZJM8,284
29
+ amulet/core/palette/biome_palette.hpp,sha256=V4OWp4TpLu0rXnyFM-UyP5rFzWhmtqP5MWbDjQC0nX8,2033
30
+ amulet/core/palette/biome_palette.pyi,sha256=vcQahmsRxVy0Y2J96Wk5is0t4FSUiRBZ6V5buSGwsSs,1652
31
+ amulet/core/palette/block_palette.hpp,sha256=e_LLR444vkbMO3KR5xhx0scIcgfd1HqEKyMiwqXqheY,2307
32
+ amulet/core/palette/block_palette.pyi,sha256=dkNqcDYFHVQ8hKzEe48pa4SNlfQbvwWMwxVVYr4s09g,1779
33
+ amulet/core/selection/__init__.pyi,sha256=STDthuVyAmuNrLp_uCvy-Nn54k8dzKZV1d0jM_KHu4g,238
34
+ amulet/core/selection/box.hpp,sha256=WfQiXqRMSbaaxnVhpfdP4VzDhSIx3mnnakoGrZKv2aQ,3031
35
+ amulet/core/selection/box.pyi,sha256=wwHCJAjZYmR_cKfOBWmmdggq5sHZO5R4bGuWp2GWvM0,6426
36
+ amulet/core/selection/group.hpp,sha256=xK07faXoiVePn9v7sJ_oZJfie3lqgzcOuGkdRe4BsUA,2292
37
+ amulet/core/selection/group.pyi,sha256=0dbn4ZCh7D2PFhzLbGuuS1Mr_WIo-sWtugxe4grWB8s,6401
38
+ amulet/core/version/__init__.pyi,sha256=0-2azYaixOPPVeXGGy_JKZTeFHy6IP6z-hgfZ3WaxWs,4104
39
+ amulet/core/version/version.hpp,sha256=yVc_uhBgmHQ0Evo73rXXoRwSQMHakUQxSYR3_fu2KH4,6506
40
+ amulet_core-2.0a9.dist-info/METADATA,sha256=3vdRtl4es5_JYz_2YIzmlPt3f1WOYF7S-yXu_d2Ey54,4952
41
+ amulet_core-2.0a9.dist-info/WHEEL,sha256=GKA3nGU7rnp8zq2x1WUxGj3H4epiX_qIOJO3FnwzRnE,150
42
+ amulet_core-2.0a9.dist-info/entry_points.txt,sha256=a64mqk_dgbzVyk-pz0WKpK6kNAhIGdVT9DO2VqDIAc8,68
43
+ amulet_core-2.0a9.dist-info/top_level.txt,sha256=3ZqHzNDiIb9kV8TwSeeXxK_9haSrsu631Qe4ndDo0rc,7
44
+ amulet_core-2.0a9.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.7.1)
3
+ Root-Is-Purelib: false
4
+ Build: 1.AppleClang.15.0.0.15000309
5
+ Tag: cp313-cp313-macosx_11_0_universal2
6
+
@@ -0,0 +1,2 @@
1
+ [pyinstaller40]
2
+ hook-dirs = amulet.core.__pyinstaller:get_hook_dirs
@@ -0,0 +1 @@
1
+ amulet