Geode-Simplex 11.3.0rc1__cp314-cp314-win_amd64.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.
Files changed (40) hide show
  1. geode_simplex/__init__.py +8 -0
  2. geode_simplex/__init__.pyi +19 -0
  3. geode_simplex/bin/Geode-Simplex_brep.dll +0 -0
  4. geode_simplex/bin/Geode-Simplex_core.dll +0 -0
  5. geode_simplex/bin/Geode-Simplex_corner.dll +0 -0
  6. geode_simplex/bin/Geode-Simplex_line2d.dll +0 -0
  7. geode_simplex/bin/Geode-Simplex_line3d.dll +0 -0
  8. geode_simplex/bin/Geode-Simplex_line_common.dll +0 -0
  9. geode_simplex/bin/Geode-Simplex_metric.dll +0 -0
  10. geode_simplex/bin/Geode-Simplex_section.dll +0 -0
  11. geode_simplex/bin/Geode-Simplex_solid.dll +0 -0
  12. geode_simplex/bin/Geode-Simplex_surface2d.dll +0 -0
  13. geode_simplex/bin/Geode-Simplex_surface3d.dll +0 -0
  14. geode_simplex/bin/Geode-Simplex_surface_common.dll +0 -0
  15. geode_simplex/bin/__init__.pyi +5 -0
  16. geode_simplex/bin/concrt140.dll +0 -0
  17. geode_simplex/bin/geode_simplex_py_brep.cp314-win_amd64.pyd +0 -0
  18. geode_simplex/bin/geode_simplex_py_brep.pyi +13 -0
  19. geode_simplex/bin/geode_simplex_py_metric.cp314-win_amd64.pyd +0 -0
  20. geode_simplex/bin/geode_simplex_py_metric.pyi +87 -0
  21. geode_simplex/bin/geode_simplex_py_section.cp314-win_amd64.pyd +0 -0
  22. geode_simplex/bin/geode_simplex_py_section.pyi +13 -0
  23. geode_simplex/bin/msvcp140.dll +0 -0
  24. geode_simplex/bin/msvcp140_1.dll +0 -0
  25. geode_simplex/bin/msvcp140_2.dll +0 -0
  26. geode_simplex/bin/msvcp140_atomic_wait.dll +0 -0
  27. geode_simplex/bin/msvcp140_codecvt_ids.dll +0 -0
  28. geode_simplex/bin/vcruntime140.dll +0 -0
  29. geode_simplex/bin/vcruntime140_1.dll +0 -0
  30. geode_simplex/brep_simplex.py +12 -0
  31. geode_simplex/brep_simplex.pyi +8 -0
  32. geode_simplex/metric_simplex.py +10 -0
  33. geode_simplex/metric_simplex.pyi +7 -0
  34. geode_simplex/py.typed +0 -0
  35. geode_simplex/section_simplex.py +11 -0
  36. geode_simplex/section_simplex.pyi +7 -0
  37. geode_simplex-11.3.0rc1.dist-info/METADATA +36 -0
  38. geode_simplex-11.3.0rc1.dist-info/RECORD +40 -0
  39. geode_simplex-11.3.0rc1.dist-info/WHEEL +5 -0
  40. geode_simplex-11.3.0rc1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,8 @@
1
+ ## Copyright (c) 2019 - 2026 Geode-solutions
2
+
3
+ import os, pathlib
4
+ os.add_dll_directory(pathlib.Path(__file__).parent.resolve().joinpath('bin'))
5
+
6
+ from .metric_simplex import *
7
+ from .section_simplex import *
8
+ from .brep_simplex import *
@@ -0,0 +1,19 @@
1
+ from __future__ import annotations
2
+ import geode_background as geode_background
3
+ import geode_common as geode_common
4
+ from geode_simplex.bin.geode_simplex_py_brep import GeodeSimplexBRepLibrary
5
+ from geode_simplex.bin.geode_simplex_py_brep import brep_simplex_remesh
6
+ from geode_simplex.bin.geode_simplex_py_metric import BRepIsotropicMetricConstraints
7
+ from geode_simplex.bin.geode_simplex_py_metric import GeodeSimplexMetricLibrary
8
+ from geode_simplex.bin.geode_simplex_py_metric import SectionIsotropicMetricConstraints
9
+ from geode_simplex.bin.geode_simplex_py_section import GeodeSimplexSectionLibrary
10
+ from geode_simplex.bin.geode_simplex_py_section import section_simplex_remesh
11
+ import opengeode as opengeode
12
+ import opengeode_inspector as opengeode_inspector
13
+ import os as os
14
+ import pathlib as pathlib
15
+ from . import bin
16
+ from . import brep_simplex
17
+ from . import metric_simplex
18
+ from . import section_simplex
19
+ __all__: list[str] = ['BRepIsotropicMetricConstraints', 'GeodeSimplexBRepLibrary', 'GeodeSimplexMetricLibrary', 'GeodeSimplexSectionLibrary', 'SectionIsotropicMetricConstraints', 'bin', 'brep_simplex', 'brep_simplex_remesh', 'geode_background', 'geode_common', 'metric_simplex', 'opengeode', 'opengeode_inspector', 'os', 'pathlib', 'section_simplex', 'section_simplex_remesh']
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from . import geode_simplex_py_brep
3
+ from . import geode_simplex_py_metric
4
+ from . import geode_simplex_py_section
5
+ __all__: list[str] = ['geode_simplex_py_brep', 'geode_simplex_py_metric', 'geode_simplex_py_section']
Binary file
@@ -0,0 +1,13 @@
1
+ """
2
+ Geode-Simplex Python binding for brep
3
+ """
4
+ from __future__ import annotations
5
+ import geode_common.bin.geode_common_py_metric
6
+ import opengeode.bin.opengeode_py_model
7
+ __all__: list[str] = ['GeodeSimplexBRepLibrary', 'brep_simplex_remesh']
8
+ class GeodeSimplexBRepLibrary:
9
+ @staticmethod
10
+ def initialize() -> None:
11
+ ...
12
+ def brep_simplex_remesh(arg0: opengeode.bin.opengeode_py_model.BRep, arg1: geode_common.bin.geode_common_py_metric.Metric3D) -> None:
13
+ ...
@@ -0,0 +1,87 @@
1
+ """
2
+ Geode-Simplex Python binding for metric
3
+ """
4
+ from __future__ import annotations
5
+ import geode_common.bin.geode_common_py_metric
6
+ import opengeode.bin.opengeode_py_mesh
7
+ import opengeode.bin.opengeode_py_model
8
+ import typing
9
+ __all__: list[str] = ['BRepIsotropicMetricConstraints', 'GeodeSimplexMetricLibrary', 'SectionIsotropicMetricConstraints']
10
+ class BRepIsotropicMetricConstraints:
11
+ def __init__(self, arg0: opengeode.bin.opengeode_py_model.BRep) -> None:
12
+ ...
13
+ def block_metric(self, arg0: opengeode.bin.opengeode_py_model.Block3D) -> float | None:
14
+ ...
15
+ def build_metric(self) -> geode_common.bin.geode_common_py_metric.Metric3D:
16
+ ...
17
+ def corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner3D) -> float | None:
18
+ ...
19
+ def default_metric(self) -> float:
20
+ ...
21
+ def export_constraints(self, arg0: str) -> None:
22
+ ...
23
+ def gradation(self) -> float:
24
+ ...
25
+ def import_constraints(self, arg0: str) -> None:
26
+ ...
27
+ def line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line3D) -> float | None:
28
+ ...
29
+ def set_block_metric(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
30
+ ...
31
+ def set_corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
32
+ ...
33
+ def set_default_metric(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
34
+ ...
35
+ def set_edged_curve_metric(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
36
+ ...
37
+ def set_gradation(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
38
+ ...
39
+ def set_line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
40
+ ...
41
+ def set_point_set_metric(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
42
+ ...
43
+ def set_surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
44
+ ...
45
+ def set_triangulated_surface_metric(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
46
+ ...
47
+ def surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface3D) -> float | None:
48
+ ...
49
+ class GeodeSimplexMetricLibrary:
50
+ @staticmethod
51
+ def initialize() -> None:
52
+ ...
53
+ class SectionIsotropicMetricConstraints:
54
+ def __init__(self, arg0: opengeode.bin.opengeode_py_model.Section) -> None:
55
+ ...
56
+ def build_metric(self) -> geode_common.bin.geode_common_py_metric.Metric2D:
57
+ ...
58
+ def corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner2D) -> float | None:
59
+ ...
60
+ def default_metric(self) -> float:
61
+ ...
62
+ def export_constraints(self, arg0: str) -> None:
63
+ ...
64
+ def gradation(self) -> float:
65
+ ...
66
+ def import_constraints(self, arg0: str) -> None:
67
+ ...
68
+ def line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line2D) -> float | None:
69
+ ...
70
+ def set_corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
71
+ ...
72
+ def set_default_metric(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
73
+ ...
74
+ def set_edged_curve_metric(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
75
+ ...
76
+ def set_gradation(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
77
+ ...
78
+ def set_line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
79
+ ...
80
+ def set_point_set_metric(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
81
+ ...
82
+ def set_surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
83
+ ...
84
+ def set_triangulated_surface_metric(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
85
+ ...
86
+ def surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface2D) -> float | None:
87
+ ...
@@ -0,0 +1,13 @@
1
+ """
2
+ Geode-Simplex Python binding for section
3
+ """
4
+ from __future__ import annotations
5
+ import geode_common.bin.geode_common_py_metric
6
+ import opengeode.bin.opengeode_py_model
7
+ __all__: list[str] = ['GeodeSimplexSectionLibrary', 'section_simplex_remesh']
8
+ class GeodeSimplexSectionLibrary:
9
+ @staticmethod
10
+ def initialize() -> None:
11
+ ...
12
+ def section_simplex_remesh(arg0: opengeode.bin.opengeode_py_model.Section, arg1: geode_common.bin.geode_common_py_metric.Metric2D) -> None:
13
+ ...
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,12 @@
1
+ #
2
+ # Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import opengeode_inspector
7
+ import geode_common
8
+ import geode_background
9
+
10
+ from .bin.geode_simplex_py_brep import *
11
+
12
+ GeodeSimplexBRepLibrary.initialize()
@@ -0,0 +1,8 @@
1
+ from __future__ import annotations
2
+ import geode_background as geode_background
3
+ import geode_common as geode_common
4
+ from geode_simplex.bin.geode_simplex_py_brep import GeodeSimplexBRepLibrary
5
+ from geode_simplex.bin.geode_simplex_py_brep import brep_simplex_remesh
6
+ import opengeode as opengeode
7
+ import opengeode_inspector as opengeode_inspector
8
+ __all__: list[str] = ['GeodeSimplexBRepLibrary', 'brep_simplex_remesh', 'geode_background', 'geode_common', 'opengeode', 'opengeode_inspector']
@@ -0,0 +1,10 @@
1
+ #
2
+ # Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import geode_common
7
+
8
+ from .bin.geode_simplex_py_metric import *
9
+
10
+ GeodeSimplexMetricLibrary.initialize()
@@ -0,0 +1,7 @@
1
+ from __future__ import annotations
2
+ import geode_common as geode_common
3
+ from geode_simplex.bin.geode_simplex_py_metric import BRepIsotropicMetricConstraints
4
+ from geode_simplex.bin.geode_simplex_py_metric import GeodeSimplexMetricLibrary
5
+ from geode_simplex.bin.geode_simplex_py_metric import SectionIsotropicMetricConstraints
6
+ import opengeode as opengeode
7
+ __all__: list[str] = ['BRepIsotropicMetricConstraints', 'GeodeSimplexMetricLibrary', 'SectionIsotropicMetricConstraints', 'geode_common', 'opengeode']
geode_simplex/py.typed ADDED
File without changes
@@ -0,0 +1,11 @@
1
+ #
2
+ # Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import geode_common
7
+ import geode_background
8
+
9
+ from .bin.geode_simplex_py_section import *
10
+
11
+ GeodeSimplexSectionLibrary.initialize()
@@ -0,0 +1,7 @@
1
+ from __future__ import annotations
2
+ import geode_background as geode_background
3
+ import geode_common as geode_common
4
+ from geode_simplex.bin.geode_simplex_py_section import GeodeSimplexSectionLibrary
5
+ from geode_simplex.bin.geode_simplex_py_section import section_simplex_remesh
6
+ import opengeode as opengeode
7
+ __all__: list[str] = ['GeodeSimplexSectionLibrary', 'geode_background', 'geode_common', 'opengeode', 'section_simplex_remesh']
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: Geode-Simplex
3
+ Version: 11.3.0rc1
4
+ Summary: Simplex remeshing Geode-solutions OpenGeode module
5
+ Author-email: Geode-solutions <contact@geode-solutions.com>
6
+ License: Proprietary
7
+ Requires-Python: <3.15,>=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: geode-background==9.*,>=9.13.0rc1
10
+ Requires-Dist: geode-common==33.*,>=33.23.0rc2
11
+ Requires-Dist: opengeode-core==17.*,>=17.3.0rc1
12
+ Requires-Dist: opengeode-inspector==6.*,>=6.11.0rc1
13
+
14
+ <h1 align="center">Geode-Simplex<sup><i>by Geode-solutions</i></sup></h1>
15
+ <h3 align="center">Simplex remeshing</h3>
16
+
17
+ <p align="center">
18
+ <img src="https://github.com/Geode-solutions/Geode-Simplex_private/workflows/CI/badge.svg" alt="Build Status">
19
+ <img src="https://github.com/Geode-solutions/Geode-Simplex_private/workflows/CD/badge.svg" alt="Deploy Status">
20
+ <img src="https://img.shields.io/github/release/Geode-solutions/Geode-Simplex_private.svg" alt="Version">
21
+ <img src="https://img.shields.io/pypi/v/geode-simplex" alt="PyPI" >
22
+ </p>
23
+
24
+ <p align="center">
25
+ <img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
26
+ <img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
27
+ <img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
28
+ </p>
29
+
30
+ <p align="center">
31
+ <img src="https://img.shields.io/badge/C%2B%2B-17-blue.svg" alt="Language">
32
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
33
+ <a href="https://opengeode-slack-invite.herokuapp.com">
34
+ <img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
35
+ </a>
36
+ </p>
@@ -0,0 +1,40 @@
1
+ geode_simplex/__init__.py,sha256=I85cJxHY94vFQYqb67uLg15fG5N6FuQ4VXCJAASf9js,241
2
+ geode_simplex/__init__.pyi,sha256=KVOkK1wu8MtaNfzicSKAnj7_EuwodNBp3zZMWQX0_Do,1298
3
+ geode_simplex/brep_simplex.py,sha256=tzMGOSPDNlQJuDNvkE8hkgrbAvV1-YsiHjbqp-pcq8g,251
4
+ geode_simplex/brep_simplex.pyi,sha256=zYtkQBbepdYKa009Qe5vhKTDdRHw0rGKTzJf6ThQHEw,495
5
+ geode_simplex/metric_simplex.py,sha256=ioGhcbMdGceieqg-Xj1JqceHGB487c5cbb4AUyCHAG0,202
6
+ geode_simplex/metric_simplex.pyi,sha256=thuu4kzXb9HkGjkYN30vLolG7uJnOq2-eFcKF5rieF0,512
7
+ geode_simplex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ geode_simplex/section_simplex.py,sha256=bvEEHC8LOTbJDb_0axvJ_7C6PGjxqemG-vdq4vHBcLs,229
9
+ geode_simplex/section_simplex.pyi,sha256=VyM9cL7ox1NnbTGNGtUeuOilGIkosaiwwHLCrzm9rHQ,439
10
+ geode_simplex/bin/Geode-Simplex_brep.dll,sha256=z8DZ3rf7eR8h5vwW7kNuyDYIhdFG549ILO-DDfmhoHA,4538368
11
+ geode_simplex/bin/Geode-Simplex_core.dll,sha256=oK5uLfexpqPXTs5ZH0rS2Fd-I8uRPiFFq0BnWj5U0RE,142848
12
+ geode_simplex/bin/Geode-Simplex_corner.dll,sha256=BrgVVrN0sXxRFQpoNF0SeFaYO9AxOEXHpZCd5Z9agsM,21504
13
+ geode_simplex/bin/Geode-Simplex_line2d.dll,sha256=atQmf1jZLsqk_KOsahKR83EmL8eECFe72xC9CapvU-I,62464
14
+ geode_simplex/bin/Geode-Simplex_line3d.dll,sha256=pSorLEsTOyePYT9eEetAn4SWk-BOI7Qu3f9BpmkqrMM,64512
15
+ geode_simplex/bin/Geode-Simplex_line_common.dll,sha256=VYfA9E0GDj3-vfoy6k14sz3bFtwvv5s5FBoBqbP4OYU,130048
16
+ geode_simplex/bin/Geode-Simplex_metric.dll,sha256=qLzB9yJ-3iCSzy_M5uG0yWfr_OJNkt2NurNqW7zMZz4,219648
17
+ geode_simplex/bin/Geode-Simplex_section.dll,sha256=mZF76lOuf3KGzeO5tr9vDgy2M2WcYFAb-UZDwTBU1Yc,4376064
18
+ geode_simplex/bin/Geode-Simplex_solid.dll,sha256=fS52JY_MCzjZgjt2eSqBp5LGnsrb7DkKsMG2rd4uiII,697344
19
+ geode_simplex/bin/Geode-Simplex_surface2d.dll,sha256=yQv2okae_oIlkZFPINMv2KuK-zJ3gDJ2PgGG3ziJf3A,119808
20
+ geode_simplex/bin/Geode-Simplex_surface3d.dll,sha256=8kEfcaSa0I5XuoKZIEurHUu7x6TDHoNh-R2Ki-vdBN0,293888
21
+ geode_simplex/bin/Geode-Simplex_surface_common.dll,sha256=GOr-u-pkcoVl3s-IFmGOPNMUMxNHE1fZjyjZqPcbeoo,315904
22
+ geode_simplex/bin/__init__.pyi,sha256=JOaNKSyNhYYzknFrX37_EVd8pLuu94V5hhIslqaipLw,255
23
+ geode_simplex/bin/concrt140.dll,sha256=JAU1XwpYBnslj43zPDJ-Oj1xbqrFo6Wuu3V4Qthb03Y,324208
24
+ geode_simplex/bin/geode_simplex_py_brep.cp314-win_amd64.pyd,sha256=3tMW8dIrnbZ5Nryu0bHcTUL3k613c42vqTaYqUK_zQs,165376
25
+ geode_simplex/bin/geode_simplex_py_brep.pyi,sha256=mEmeUt2zJ0mF4JwxVxI5TNJnXvMEScVaLj6q7qLAPHM,486
26
+ geode_simplex/bin/geode_simplex_py_metric.cp314-win_amd64.pyd,sha256=1ZF-86UaqoOkT12OmKEu7jJuE4WZzTPStouFuZVIwZc,206848
27
+ geode_simplex/bin/geode_simplex_py_metric.pyi,sha256=1sDyKWjWDFHVl6FKUr2yJZpQhQNxjSkbzPjNBYtxtr8,4628
28
+ geode_simplex/bin/geode_simplex_py_section.cp314-win_amd64.pyd,sha256=4x5AF0EdLT9_P3EYlKSZbX5Iyt-HuCkcSNxRnoCCZno,165376
29
+ geode_simplex/bin/geode_simplex_py_section.pyi,sha256=giP9wfCFGc5iRZIV2xpEGqHpm5KXC86haHG0di5lhcs,504
30
+ geode_simplex/bin/msvcp140.dll,sha256=D4hbUJpoXSu_plL-0mtfsx2I-9qwqXjGQdHHuKpGCqk,557728
31
+ geode_simplex/bin/msvcp140_1.dll,sha256=v61a70xjpmnjwUBlXN_fOVtsl5tACkR71dy2XtiCbD0,35952
32
+ geode_simplex/bin/msvcp140_2.dll,sha256=PqBvDuCYtII8t5WZ3zeA5_I8zlLBmqwx0qDUfv4zpek,280200
33
+ geode_simplex/bin/msvcp140_atomic_wait.dll,sha256=ZAsq787UhNA2jupb3Qat3QZYo6cKSSVuVg1pI7QEpHk,50304
34
+ geode_simplex/bin/msvcp140_codecvt_ids.dll,sha256=8gaaUogOyIXufwURGGEA63-toEEaK0lI-v6nc1uHihg,31872
35
+ geode_simplex/bin/vcruntime140.dll,sha256=1eTZo-g1-meUUBRdan2U42VzpQkxcRGQTZs3EsMNkGY,124544
36
+ geode_simplex/bin/vcruntime140_1.dll,sha256=Hy1BxKpdsLwz6_e2bXKUOoF9fObL6IBQKpQDgjYzCT8,49792
37
+ geode_simplex-11.3.0rc1.dist-info/METADATA,sha256=WVIBzGTN34dQ29wh4bWIq_AtzQnZVHp-djmpZOZYNjk,1885
38
+ geode_simplex-11.3.0rc1.dist-info/WHEEL,sha256=jhxrRP3tdEfm7toB1X7dl5x6f0bu6Tve2cWwIdkbL8U,101
39
+ geode_simplex-11.3.0rc1.dist-info/top_level.txt,sha256=qVrD68Hw2vhKcJrG51EYDm9MTGp9SfmZRdSrRKjmdFI,14
40
+ geode_simplex-11.3.0rc1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-win_amd64
5
+
@@ -0,0 +1 @@
1
+ geode_simplex