Geode-Background 9.5.0__cp39-cp39-manylinux_2_28_x86_64.whl → 9.6.0__cp39-cp39-manylinux_2_28_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 Geode-Background might be problematic. Click here for more details.

Files changed (25) hide show
  1. geode_background/geode_background/__init__.pyi +13 -0
  2. geode_background/geode_background/brep_background.pyi +5 -0
  3. geode_background/geode_background/common_background.pyi +5 -0
  4. geode_background/geode_background/lib64/__init__.pyi +6 -0
  5. geode_background/geode_background/lib64/geode_background_py_brep.pyi +9 -0
  6. geode_background/geode_background/lib64/geode_background_py_common.pyi +9 -0
  7. geode_background/geode_background/lib64/geode_background_py_solid.pyi +9 -0
  8. geode_background/geode_background/lib64/geode_background_py_surface.pyi +9 -0
  9. geode_background/geode_background/solid_background.pyi +5 -0
  10. geode_background/geode_background/surface_background.pyi +5 -0
  11. geode_background/lib64/geode_background_py_brep.cpython-39-x86_64-linux-gnu.so +0 -0
  12. geode_background/lib64/geode_background_py_common.cpython-39-x86_64-linux-gnu.so +0 -0
  13. geode_background/lib64/geode_background_py_solid.cpython-39-x86_64-linux-gnu.so +0 -0
  14. geode_background/lib64/geode_background_py_surface.cpython-39-x86_64-linux-gnu.so +0 -0
  15. geode_background/lib64/libGeode-Background_brep.so +0 -0
  16. geode_background/lib64/libGeode-Background_common.so +0 -0
  17. geode_background/lib64/libGeode-Background_line.so +0 -0
  18. geode_background/lib64/libGeode-Background_solid.so +0 -0
  19. geode_background/lib64/libGeode-Background_surface.so +0 -0
  20. geode_background/py.typed +0 -0
  21. {geode_background-9.5.0.dist-info → geode_background-9.6.0.dist-info}/METADATA +3 -3
  22. geode_background-9.6.0.dist-info/RECORD +29 -0
  23. geode_background-9.5.0.dist-info/RECORD +0 -18
  24. {geode_background-9.5.0.dist-info → geode_background-9.6.0.dist-info}/WHEEL +0 -0
  25. {geode_background-9.5.0.dist-info → geode_background-9.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,13 @@
1
+ from __future__ import annotations
2
+ from geode_background.lib64.geode_background_py_brep import BackgroundBRepLibrary
3
+ from geode_background.lib64.geode_background_py_common import BackgroundCommonLibrary
4
+ from geode_background.lib64.geode_background_py_solid import BackgroundSolidLibrary
5
+ from geode_background.lib64.geode_background_py_surface import BackgroundSurfaceLibrary
6
+ import geode_common as geode_common
7
+ import opengeode as opengeode
8
+ from . import brep_background
9
+ from . import common_background
10
+ from . import lib64
11
+ from . import solid_background
12
+ from . import surface_background
13
+ __all__: list[str] = ['BackgroundBRepLibrary', 'BackgroundCommonLibrary', 'BackgroundSolidLibrary', 'BackgroundSurfaceLibrary', 'brep_background', 'common_background', 'geode_common', 'lib64', 'opengeode', 'solid_background', 'surface_background']
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.lib64.geode_background_py_brep import BackgroundBRepLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['BackgroundBRepLibrary', 'geode_common', 'opengeode']
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.lib64.geode_background_py_common import BackgroundCommonLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['BackgroundCommonLibrary', 'geode_common', 'opengeode']
@@ -0,0 +1,6 @@
1
+ from __future__ import annotations
2
+ from . import geode_background_py_brep
3
+ from . import geode_background_py_common
4
+ from . import geode_background_py_solid
5
+ from . import geode_background_py_surface
6
+ __all__: list[str] = ['geode_background_py_brep', 'geode_background_py_common', 'geode_background_py_solid', 'geode_background_py_surface']
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for brep
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['BackgroundBRepLibrary']
6
+ class BackgroundBRepLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for common
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['BackgroundCommonLibrary']
6
+ class BackgroundCommonLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for solid
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['BackgroundSolidLibrary']
6
+ class BackgroundSolidLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for surface
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['BackgroundSurfaceLibrary']
6
+ class BackgroundSurfaceLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.lib64.geode_background_py_solid import BackgroundSolidLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['BackgroundSolidLibrary', 'geode_common', 'opengeode']
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.lib64.geode_background_py_surface import BackgroundSurfaceLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['BackgroundSurfaceLibrary', 'geode_common', 'opengeode']
File without changes
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Geode-Background
3
- Version: 9.5.0
3
+ Version: 9.6.0
4
4
  Summary: Geode-solutions OpenGeode module for building background meshes
5
5
  Author-email: Geode-solutions <contact@geode-solutions.com>
6
6
  License: Proprietary
7
7
  Requires-Python: <3.13,>=3.9
8
8
  Description-Content-Type: text/markdown
9
- Requires-Dist: geode-common==33.*,>=33.10.0
10
- Requires-Dist: opengeode-core==15.*,>=15.25.0
9
+ Requires-Dist: geode-common==33.*,>=33.11.0
10
+ Requires-Dist: opengeode-core==15.*,>=15.26.0
11
11
 
12
12
  <h1 align="center">Background<sup><i>by Geode-solutions</i></sup></h1>
13
13
  <h3 align="center">Module to generate background meshes and background models for OpenGeode</h3>
@@ -0,0 +1,29 @@
1
+ geode_background/__init__.py,sha256=TylbUeeCDwMHE6Mkwg7APOl0M3_ANrepRRvQ3SIHarw,176
2
+ geode_background/brep_background.py,sha256=aaoi25hxna9HZY6tgHddpZKQqX9iO2Lcjv8Q7VxEEDE,191
3
+ geode_background/common_background.py,sha256=3ZejF1mV4-nJ5KwMHV4eKPx-1YeMMpD0YtFBAfFviUk,195
4
+ geode_background/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ geode_background/solid_background.py,sha256=5Bm9diZ8dC-Hr8EmRcmtCf6WM4P0kwQDXlVg32rlIF0,192
6
+ geode_background/surface_background.py,sha256=o9girxMu_ai70X8M2r8H4fo-CcrTY5uwXha9yXNhdZI,196
7
+ geode_background/geode_background/__init__.pyi,sha256=NUy6pSyzsNAzoX9z0hqgVwvWpKCxvtpAVHZCX7Ks-jE,835
8
+ geode_background/geode_background/brep_background.pyi,sha256=6zFTBZAnmIL0tz0FVhUsvczVqfE-fOCAUlYUB2UPCKc,259
9
+ geode_background/geode_background/common_background.pyi,sha256=ITg7Gbm005845256HoPbYaa5M1kIJvoe5iktY3j_8rU,265
10
+ geode_background/geode_background/solid_background.pyi,sha256=zksKlIn8cxus85GtL9jboMOQqhkWXdG1C-vIENOw7lk,262
11
+ geode_background/geode_background/surface_background.pyi,sha256=d4-8E-Uv3-86oeAgN7YtTbuj82JHVy-Zwpyel3mSNJ8,268
12
+ geode_background/geode_background/lib64/__init__.pyi,sha256=CGSc1OiocGZCMzGDUSbqm2rrlUnXphLmmshqPl3lUp8,337
13
+ geode_background/geode_background/lib64/geode_background_py_brep.pyi,sha256=xdu66qm5yjnbYVa9z251SEvqkzgh85ghprzOUSiTY8k,220
14
+ geode_background/geode_background/lib64/geode_background_py_common.pyi,sha256=aNxPckueBjXNQFYAuPyU2jTHm_Auhf5f1j9xqGIPuzI,226
15
+ geode_background/geode_background/lib64/geode_background_py_solid.pyi,sha256=WSZyOon7bqN6wWsLTGVt_rTAc66JcMYOsku3mx_QIhE,223
16
+ geode_background/geode_background/lib64/geode_background_py_surface.pyi,sha256=4ujjjkmQWzfUY133bDUR1GzRro8nWptLmIUCMpuzb94,229
17
+ geode_background/lib64/geode_background_py_brep.cpython-39-x86_64-linux-gnu.so,sha256=1wz7k2_dUM6BjfyjepIObLdDtDMqFmmfzHejkuFBOIw,142904
18
+ geode_background/lib64/geode_background_py_common.cpython-39-x86_64-linux-gnu.so,sha256=p1cUERtH9BQaH8B_MhQ7OhL3eVEEEg1B3TyHHNp6xIQ,138808
19
+ geode_background/lib64/geode_background_py_solid.cpython-39-x86_64-linux-gnu.so,sha256=gGGXFqY6z60GO6gPmw74mr8kndVPM_8SkNgYfRH_FaU,142904
20
+ geode_background/lib64/geode_background_py_surface.cpython-39-x86_64-linux-gnu.so,sha256=SwKZrorIN2rx9B-QDe1ZItTmVwoQQVwoSnzynQR1nR4,142904
21
+ geode_background/lib64/libGeode-Background_brep.so,sha256=gsU6aM2PPaDH8kblXmi-pJQRpO1Jn70hLutsVT1EKng,468624
22
+ geode_background/lib64/libGeode-Background_common.so,sha256=NDCRHt9ytKsqaK0pGLWWGQsIEg_vdjJ0QPp8863R-iw,183608
23
+ geode_background/lib64/libGeode-Background_line.so,sha256=DA5pG1UXgd0zZdEXhXKhNUmDHe0hhgnQZxCed8H5P4o,238624
24
+ geode_background/lib64/libGeode-Background_solid.so,sha256=7PHhud2fzKRB872okfJ0kL-DM3afKx-I9JtGEHtEsfg,844328
25
+ geode_background/lib64/libGeode-Background_surface.so,sha256=4o4YGsBxCc9U6jJhZZbVzUxDm3FBIX3HZYadFtzNfuY,5572600
26
+ geode_background-9.6.0.dist-info/METADATA,sha256=jfSIzc4hhn1OPnM_t9QmMU7VcRCPIlchxFO9qbrr_sA,542
27
+ geode_background-9.6.0.dist-info/WHEEL,sha256=xBX4onHB9hedwVJmaMzGMZGvQ3CPO7V_K8S9h_B6PVk,102
28
+ geode_background-9.6.0.dist-info/top_level.txt,sha256=Zrf1AIA63yPEiQFwdZwLsHzGAE3soNFO7AVs5NdN_r4,17
29
+ geode_background-9.6.0.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- geode_background/__init__.py,sha256=TylbUeeCDwMHE6Mkwg7APOl0M3_ANrepRRvQ3SIHarw,176
2
- geode_background/brep_background.py,sha256=aaoi25hxna9HZY6tgHddpZKQqX9iO2Lcjv8Q7VxEEDE,191
3
- geode_background/common_background.py,sha256=3ZejF1mV4-nJ5KwMHV4eKPx-1YeMMpD0YtFBAfFviUk,195
4
- geode_background/solid_background.py,sha256=5Bm9diZ8dC-Hr8EmRcmtCf6WM4P0kwQDXlVg32rlIF0,192
5
- geode_background/surface_background.py,sha256=o9girxMu_ai70X8M2r8H4fo-CcrTY5uwXha9yXNhdZI,196
6
- geode_background/lib64/geode_background_py_brep.cpython-39-x86_64-linux-gnu.so,sha256=QwGaar0xcJH7_1GbpFIg10uGL0BWam4pXKt25zAW56Q,142904
7
- geode_background/lib64/geode_background_py_common.cpython-39-x86_64-linux-gnu.so,sha256=Q12iglfUzGD4dB03lS39TKHSn0UpUkp2bRSdEr6OgtA,138808
8
- geode_background/lib64/geode_background_py_solid.cpython-39-x86_64-linux-gnu.so,sha256=6Fc-cu1xZNrdr1ksB1Y6-f2JFJKbcmr7-UBC0JX6kpg,142904
9
- geode_background/lib64/geode_background_py_surface.cpython-39-x86_64-linux-gnu.so,sha256=rsY6_N5FAMUJSYjf2tqdD1f29THmY_0mi8GHF8hP9g4,142904
10
- geode_background/lib64/libGeode-Background_brep.so,sha256=35g0DdECuMkejgtVpgej4k-TeulWi10BB70T8oq5iNc,468624
11
- geode_background/lib64/libGeode-Background_common.so,sha256=IuWSoMZeISbAnH7KeJQftzaKOisVKNGNKlDeo5grQTc,183608
12
- geode_background/lib64/libGeode-Background_line.so,sha256=hlj_5Julh4Op1gzEilVdkzLtFPMZFW9eTyWm7zDdSII,238624
13
- geode_background/lib64/libGeode-Background_solid.so,sha256=PkEbR--IdIMIJjuxOqbiJWqfPU-ofFEdCLqcjaKvjvE,844328
14
- geode_background/lib64/libGeode-Background_surface.so,sha256=u_MLSGPRWhynMZe7Z4lu-DqKwlV9-QcH246QNUdFc8s,5572600
15
- geode_background-9.5.0.dist-info/METADATA,sha256=E69WHuhL20PtCYmmXnKS5bqfECmo3kmFeNHIQyAZ74c,542
16
- geode_background-9.5.0.dist-info/WHEEL,sha256=xBX4onHB9hedwVJmaMzGMZGvQ3CPO7V_K8S9h_B6PVk,102
17
- geode_background-9.5.0.dist-info/top_level.txt,sha256=Zrf1AIA63yPEiQFwdZwLsHzGAE3soNFO7AVs5NdN_r4,17
18
- geode_background-9.5.0.dist-info/RECORD,,