Geode-Explicit 3.0.0__cp310-cp310-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.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.1
2
+ Name: Geode-Explicit
3
+ Version: 3.0.0
4
+ Summary: Geode-solutions OpenGeode module for building explicit models
5
+ Home-page: https://github.com/Geode-solutions/Geode-Explicit
6
+ Author: Geode-solutions
7
+ Author-email: contact@geode-solutions.com
8
+ License: Proprietary
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: geode-background (==7.*,>=7.0.0)
11
+ Requires-Dist: geode-common (==25.*,>=25.0.0)
12
+ Requires-Dist: geode-conversion (==5.*,>=5.0.0)
13
+ Requires-Dist: opengeode-core (==14.*,>=14.0.0)
14
+ Requires-Dist: opengeode-geosciences (==7.*,>=7.0.0)
15
+ Requires-Dist: opengeode-geosciencesio (==4.*,>=4.0.0)
16
+ Requires-Dist: opengeode-inspector (==3.*,>=3.0.0)
17
+ Requires-Dist: opengeode-io (==6.*,>=6.0.0)
18
+
19
+ <h1 align="center">Geode-Explicit<sup><i>by Geode-solutions</i></sup></h1>
20
+ <h3 align="center">Geode-solutions OpenGeode module for building explicit models</h3>
21
+
22
+ <p align="center">
23
+ <img src="https://github.com/Geode-solutions/Geode-Explicit_private/workflows/CI/badge.svg" alt="Build Status">
24
+ <img src="https://github.com/Geode-solutions/Geode-Explicit_private/workflows/CD/badge.svg" alt="Deploy Status">
25
+ <img src="https://codecov.io/gh/Geode-solutions/Geode-Explicit_private/branch/master/graph/badge.svg" alt="Coverage Status">
26
+ <img src="https://img.shields.io/github/release/Geode-solutions/Geode-Explicit_private.svg" alt="Version">
27
+ </p>
28
+
29
+ <p align="center">
30
+ <img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
31
+ <img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
32
+ <img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
33
+ </p>
34
+
35
+ <p align="center">
36
+ <img src="https://img.shields.io/badge/C%2B%2B-11-blue.svg" alt="Language">
37
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License">
38
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
39
+ <a href="https://opengeode-slack-invite.herokuapp.com">
40
+ <img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
41
+ </a>
42
+
43
+ Copyright (c) 2019 - 2023, Geode-solutions
@@ -0,0 +1,7 @@
1
+ geode_explicit/__init__.py,sha256=NF3FlAlGQE4p3twogikP1TtsqUOL4DEutnY0yhJe8Aw,93
2
+ geode_explicit/brep.py,sha256=5gXUGyujJVK7W7i2Zoqb5_9Mb5jPPZLiYZX9piVVUGY,271
3
+ geode_explicit/section.py,sha256=diHY0-G0OXfICdOX3HSTnwrdrW3WOsct7GAT4rECQb4,249
4
+ Geode_Explicit-3.0.0.dist-info/METADATA,sha256=Cm_E2hpL3vQVmHYdDKPQl8zoTenlN-qnzo2ut8WhDII,2356
5
+ Geode_Explicit-3.0.0.dist-info/WHEEL,sha256=jrOhEbqKwvzRFSJcbYXlJCyVkgVdHg4_7__YHrdTUfw,102
6
+ Geode_Explicit-3.0.0.dist-info/top_level.txt,sha256=SLuJS840PQSB1EAIYibu72OEG1sORAkOdcw3z29RuQQ,15
7
+ Geode_Explicit-3.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.40.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-win_amd64
5
+
@@ -0,0 +1 @@
1
+ geode_explicit
@@ -0,0 +1,4 @@
1
+ ## Copyright (c) 2019 - 2023 Geode-solutions
2
+
3
+ from .section import *
4
+ from .brep import *
geode_explicit/brep.py ADDED
@@ -0,0 +1,12 @@
1
+ #
2
+ # Copyright (c) 2019 - 2023 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import opengeode_inspector
7
+ import geode_common
8
+ import geode_conversion
9
+ import geode_background
10
+
11
+ from .bin.geode_explicit_py_brep import *
12
+ ExplicitBRepLibrary.initialize()
@@ -0,0 +1,11 @@
1
+ #
2
+ # Copyright (c) 2019 - 2023 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import geode_common
7
+ import geode_conversion
8
+ import geode_background
9
+
10
+ from .bin.geode_explicit_py_section import *
11
+ ExplicitSectionLibrary.initialize()