Geode-Background 8.6.0rc1__cp39-cp39-win_amd64.whl → 9.9.3rc2__cp39-cp39-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 (31) hide show
  1. geode_background/__init__.py +1 -1
  2. geode_background/__init__.pyi +15 -0
  3. geode_background/bin/Geode-Background_brep.dll +0 -0
  4. geode_background/bin/Geode-Background_common.dll +0 -0
  5. geode_background/bin/Geode-Background_line.dll +0 -0
  6. geode_background/bin/Geode-Background_solid.dll +0 -0
  7. geode_background/bin/Geode-Background_surface.dll +0 -0
  8. geode_background/bin/__init__.pyi +6 -0
  9. geode_background/bin/geode_background_py_brep.cp39-win_amd64.pyd +0 -0
  10. geode_background/bin/geode_background_py_brep.pyi +9 -0
  11. geode_background/bin/geode_background_py_common.cp39-win_amd64.pyd +0 -0
  12. geode_background/bin/geode_background_py_common.pyi +9 -0
  13. geode_background/bin/geode_background_py_solid.cp39-win_amd64.pyd +0 -0
  14. geode_background/bin/geode_background_py_solid.pyi +9 -0
  15. geode_background/bin/geode_background_py_surface.cp39-win_amd64.pyd +0 -0
  16. geode_background/bin/geode_background_py_surface.pyi +9 -0
  17. geode_background/brep_background.py +1 -1
  18. geode_background/brep_background.pyi +5 -0
  19. geode_background/common_background.py +1 -1
  20. geode_background/common_background.pyi +5 -0
  21. geode_background/py.typed +0 -0
  22. geode_background/solid_background.py +1 -1
  23. geode_background/solid_background.pyi +5 -0
  24. geode_background/surface_background.py +1 -1
  25. geode_background/surface_background.pyi +5 -0
  26. geode_background-9.9.3rc2.dist-info/METADATA +13 -0
  27. geode_background-9.9.3rc2.dist-info/RECORD +29 -0
  28. {Geode_Background-8.6.0rc1.dist-info → geode_background-9.9.3rc2.dist-info}/WHEEL +1 -1
  29. Geode_Background-8.6.0rc1.dist-info/METADATA +0 -20
  30. Geode_Background-8.6.0rc1.dist-info/RECORD +0 -17
  31. {Geode_Background-8.6.0rc1.dist-info → geode_background-9.9.3rc2.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- ## Copyright (c) 2019 - 2024 Geode-solutions
1
+ ## Copyright (c) 2019 - 2025 Geode-solutions
2
2
 
3
3
  import os, pathlib
4
4
  os.add_dll_directory(pathlib.Path(__file__).parent.resolve().joinpath('bin'))
@@ -0,0 +1,15 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.geode_background_py_brep import BackgroundBRepLibrary
3
+ from geode_background.bin.geode_background_py_common import BackgroundCommonLibrary
4
+ from geode_background.bin.geode_background_py_solid import BackgroundSolidLibrary
5
+ from geode_background.bin.geode_background_py_surface import BackgroundSurfaceLibrary
6
+ import geode_common as geode_common
7
+ import opengeode as opengeode
8
+ import os as os
9
+ import pathlib as pathlib
10
+ from . import bin
11
+ from . import brep_background
12
+ from . import common_background
13
+ from . import solid_background
14
+ from . import surface_background
15
+ __all__: list[str] = ['BackgroundBRepLibrary', 'BackgroundCommonLibrary', 'BackgroundSolidLibrary', 'BackgroundSurfaceLibrary', 'bin', 'brep_background', 'common_background', 'geode_common', 'opengeode', 'os', 'pathlib', 'solid_background', 'surface_background']
@@ -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
+ ...
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.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']
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.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']
File without changes
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.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']
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.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']
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: Geode-Background
3
+ Version: 9.9.3rc2
4
+ Summary: Geode-solutions OpenGeode module for building background meshes
5
+ Author-email: Geode-solutions <contact@geode-solutions.com>
6
+ License: Proprietary
7
+ Requires-Python: <3.13,>=3.9
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: geode-common==33.*,>=33.16.1rc3
10
+ Requires-Dist: opengeode-core==15.*,>=15.30.15rc1
11
+
12
+ <h1 align="center">Background<sup><i>by Geode-solutions</i></sup></h1>
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=yFlrvwZqzQ5ERvXiDceX2vZL3VkR30A1XyyXM7szANQ,283
2
+ geode_background/__init__.pyi,sha256=7KgTP6gTqr4FM3NQHgDvXrLZkE8xkhc2HMfQ4k1WNno,897
3
+ geode_background/brep_background.py,sha256=jbNNA_gKh7S6wRfxGEPL_Vb0uwjwFGYhBJAEUk2A_uE,199
4
+ geode_background/brep_background.pyi,sha256=OhGs_NgS-VcztZeAVbwruGq3RBhJJiBNLl9RquHb2qA,262
5
+ geode_background/common_background.py,sha256=lKaajpCjjTbU-uEWeGxUFx91HQMl4uSY-LBq69duKcA,203
6
+ geode_background/common_background.pyi,sha256=J2iHNxuv22XYoXXVEYKRUYGABv6N-7FwX5jM-nyzdF0,268
7
+ geode_background/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ geode_background/solid_background.py,sha256=n0ckZWj2y1ln6_hNzRfSB2foaeiu94ukBVc70d1LviA,199
9
+ geode_background/solid_background.pyi,sha256=QFnMsyz4gZnER6mGylrBea_bKfRfp814DxXGuyJhpuw,265
10
+ geode_background/surface_background.py,sha256=n1yCRvmucxKem8uzXTSphFTSMbcHsZyV327ai6LAEQQ,203
11
+ geode_background/surface_background.pyi,sha256=vVQ6h1wpcM9TQoBQArn-uhj6ZHxwhVRXMloX02i8S-E,271
12
+ geode_background/bin/Geode-Background_brep.dll,sha256=8gLu47buS2PgC2sYdF1oq7fsP0psnirYh01dDWfcmGs,4680704
13
+ geode_background/bin/Geode-Background_common.dll,sha256=MT3GEU3YmBpKjlHrkR5EAy3DxPaoOCrP7ZxT1oNPEuA,103936
14
+ geode_background/bin/Geode-Background_line.dll,sha256=FQCki9JTN7X-bXeeixP58kyTLIGyujyIN_REDPRW-k0,4385280
15
+ geode_background/bin/Geode-Background_solid.dll,sha256=88sQzQRvzI1lj9t5mJK-cfxWTyuV9bd4inNTyKRHUAA,4862464
16
+ geode_background/bin/Geode-Background_surface.dll,sha256=kUUoqAlAi_eDzjRQ4l3kS2rEjkV2JSbIDDpFOjryD9Y,4591104
17
+ geode_background/bin/__init__.pyi,sha256=TT36t01ufzuD9A3S27dtn_HjYoCrNbLxH4moWKk_Qpw,343
18
+ geode_background/bin/geode_background_py_brep.cp39-win_amd64.pyd,sha256=Vb2nT20-I3gSSrcPikheTQ0lxMCtJ2wT-NHlL0Aejl8,130048
19
+ geode_background/bin/geode_background_py_brep.pyi,sha256=y0lXkUyXOYLW9_W9Oq23DsVboTM-ZgE3aBJ1Dq5pGTk,229
20
+ geode_background/bin/geode_background_py_common.cp39-win_amd64.pyd,sha256=SZCLQk2sCypu4onKOspMOFKS1gpSj0k3HesE5g-4R04,130048
21
+ geode_background/bin/geode_background_py_common.pyi,sha256=vSNUOSslh6vtr5ofdaiULuMqvcQ9xaXSeCh1Ov6VOHw,235
22
+ geode_background/bin/geode_background_py_solid.cp39-win_amd64.pyd,sha256=4oGMhRjkx2c65Xi44qT95l6Ek7lmokhjgVr7iN0VLXY,130048
23
+ geode_background/bin/geode_background_py_solid.pyi,sha256=6_W2rxoKMdImjRGHllrPIaBHyvjhECxlIgzCqfXEe9E,232
24
+ geode_background/bin/geode_background_py_surface.cp39-win_amd64.pyd,sha256=ovGzmNetvnoERGH8MO5lHt9bMMoKc-pTBnK2QGK7560,130048
25
+ geode_background/bin/geode_background_py_surface.pyi,sha256=Kyi4h0mYL40BQzTyh51_bQTd3mtgsjcFpLuo4I2IJWw,238
26
+ geode_background-9.9.3rc2.dist-info/METADATA,sha256=a7JuEAV8aQGRvh3tVzQSYz41FIFbBmFYX4SgYWmGMB0,565
27
+ geode_background-9.9.3rc2.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
28
+ geode_background-9.9.3rc2.dist-info/top_level.txt,sha256=Zrf1AIA63yPEiQFwdZwLsHzGAE3soNFO7AVs5NdN_r4,17
29
+ geode_background-9.9.3rc2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-win_amd64
5
5
 
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: Geode-Background
3
- Version: 8.6.0rc1
4
- Summary: Geode-solutions OpenGeode module for building background meshes
5
- Author-email: Geode-solutions <contact@geode-solutions.com>
6
- License: Proprietary
7
- Requires-Python: <3.13,>=3.9
8
- Description-Content-Type: text/markdown
9
- Requires-Dist: geode-common==33.*,>=33.0.3
10
- Requires-Dist: opengeode-core==15.*,>=15.5.0
11
-
12
- <h1 align="center">Background<sup><i>by Geode-solutions</i></sup></h1>
13
- <h3 align="center">Module to generate background meshes and background models for OpenGeode</h3>
14
-
15
- <p align="center">
16
- <img src="https://github.com/Geode-solutions/Background_private/workflows/CI/badge.svg" alt="Build Status">
17
- <img src="https://github.com/Geode-solutions/Background_private/workflows/CD/badge.svg" alt="Deploy Status">
18
- <img src="https://codecov.io/gh/Geode-solutions/Background_private/branch/master/graph/badge.svg" alt="Coverage Status">
19
- <img src="https://img.shields.io/github/release/Geode-solutions/Background_private.svg" alt="Version">
20
- </p>
@@ -1,17 +0,0 @@
1
- geode_background/__init__.py,sha256=x08fVfkWaQLEiQaL40iEW_amLYO56QanpH5C_xQWRRg,283
2
- geode_background/brep_background.py,sha256=tYHPoFSpQe7DcP4UdByklZuv6cIhtVzy4AtC6FDmb5g,199
3
- geode_background/common_background.py,sha256=DM13R6NUnFD_OScCCNdfsxRHiXdhA3_MyiLctarpvX4,203
4
- geode_background/solid_background.py,sha256=XU7nXDgAjD_8fRTQOQteGvL812oy5pCNNxAPDjXg21c,199
5
- geode_background/surface_background.py,sha256=gYOsu70XBpFHsMsTG56V05oAa8xWQLPsZpDhdkPP7PY,203
6
- geode_background/bin/Geode-Background_brep.dll,sha256=2ntYlJsKYlPal245E3Li2Raf9sWspEIPpCaZcdz7CvU,2265088
7
- geode_background/bin/Geode-Background_common.dll,sha256=JPEYda1zmkiMiJx34WS-KKoHjmzj81z-1wPbUwd6rxI,101888
8
- geode_background/bin/Geode-Background_solid.dll,sha256=6gMq8A3lJwXUi6OpT9UZTHjwNOy3dmymkbvdSGb8JSo,2420736
9
- geode_background/bin/Geode-Background_surface.dll,sha256=v5WqUxObLl5LHgXeuMzrK1spdpRLfT802jOiVo9deH8,2200064
10
- geode_background/bin/geode_background_py_brep.cp39-win_amd64.pyd,sha256=T9LvJT5CBuUlV-7dygpYOmABfTRK_YxPXpiK5z43I_c,122880
11
- geode_background/bin/geode_background_py_common.cp39-win_amd64.pyd,sha256=nRckb2YsCCoNSEhe3UM7N6R69pOro-_KpZjctkz5MoE,122880
12
- geode_background/bin/geode_background_py_solid.cp39-win_amd64.pyd,sha256=nSZQqFXDC2DzZIdYcYl3eaRnL0R2IQ_e1Gbv4h3jVys,122880
13
- geode_background/bin/geode_background_py_surface.cp39-win_amd64.pyd,sha256=kfI6rvirSVzmjfzF4zwYW7iOpkOCChw8KA_8RLf0fhE,122880
14
- Geode_Background-8.6.0rc1.dist-info/METADATA,sha256=O7inhXUtUIXLyq8GERSHQ1AVd8qoVkWwj7UAIEaXb98,1037
15
- Geode_Background-8.6.0rc1.dist-info/WHEEL,sha256=vq7bX_I37ZJK2gZz_HGA8eCPjBDKQSfb_9FNjesTNkk,99
16
- Geode_Background-8.6.0rc1.dist-info/top_level.txt,sha256=Zrf1AIA63yPEiQFwdZwLsHzGAE3soNFO7AVs5NdN_r4,17
17
- Geode_Background-8.6.0rc1.dist-info/RECORD,,