Geode-Viewables 3.0.0rc1__tar.gz
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.
- geode_viewables-3.0.0rc1/Geode_Viewables.egg-info/PKG-INFO +36 -0
- geode_viewables-3.0.0rc1/Geode_Viewables.egg-info/SOURCES.txt +16 -0
- geode_viewables-3.0.0rc1/Geode_Viewables.egg-info/dependency_links.txt +1 -0
- geode_viewables-3.0.0rc1/Geode_Viewables.egg-info/requires.txt +4 -0
- geode_viewables-3.0.0rc1/Geode_Viewables.egg-info/top_level.txt +1 -0
- geode_viewables-3.0.0rc1/PKG-INFO +36 -0
- geode_viewables-3.0.0rc1/README.md +23 -0
- geode_viewables-3.0.0rc1/geode_viewables/__init__.py +4 -0
- geode_viewables-3.0.0rc1/geode_viewables/conversion.py +26 -0
- geode_viewables-3.0.0rc1/geode_viewables/lib64/geode_viewables_py_conversion.cpython-312-x86_64-linux-gnu.so +0 -0
- geode_viewables-3.0.0rc1/geode_viewables/lib64/geode_viewables_py_qem_proxy.cpython-312-x86_64-linux-gnu.so +0 -0
- geode_viewables-3.0.0rc1/geode_viewables/lib64/libGeode-Viewables_conversion.so +0 -0
- geode_viewables-3.0.0rc1/geode_viewables/lib64/libGeode-Viewables_qem_proxy.so +0 -0
- geode_viewables-3.0.0rc1/geode_viewables/qem_proxy.py +25 -0
- geode_viewables-3.0.0rc1/pyproject.toml +42 -0
- geode_viewables-3.0.0rc1/requirements.txt +18 -0
- geode_viewables-3.0.0rc1/setup.cfg +4 -0
- geode_viewables-3.0.0rc1/setup.py +45 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: Geode-Viewables
|
|
3
|
+
Version: 3.0.0rc1
|
|
4
|
+
Summary: Geode module to objects visualization
|
|
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==32.*,>=32.0.0rc1
|
|
10
|
+
Requires-Dist: opengeode-core==15.*,>=15.0.0rc2
|
|
11
|
+
Requires-Dist: opengeode-geosciences==8.*,>=8.0.0rc1
|
|
12
|
+
Requires-Dist: opengeode-io==7.*,>=7.0.0rc1
|
|
13
|
+
|
|
14
|
+
<h1 align="center">Geode-Viewables<sup><i>by Geode-solutions</i></sup></h1>
|
|
15
|
+
<h3 align="center">Utilities to help visualizing OpenGeode objects</h3>
|
|
16
|
+
|
|
17
|
+
<p align="center">
|
|
18
|
+
<img src="https://github.com/Geode-solutions/Geode-Viewables_private/workflows/CI/badge.svg" alt="Build Status">
|
|
19
|
+
<img src="https://github.com/Geode-solutions/Geode-Viewables_private/workflows/CD/badge.svg" alt="Deploy Status">
|
|
20
|
+
<img src="https://img.shields.io/github/release/Geode-solutions/Geode-Viewables_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-11-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://geode-solutions.com/#slack">
|
|
34
|
+
<img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
|
|
35
|
+
</a>
|
|
36
|
+
</p>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
requirements.txt
|
|
4
|
+
setup.py
|
|
5
|
+
Geode_Viewables.egg-info/PKG-INFO
|
|
6
|
+
Geode_Viewables.egg-info/SOURCES.txt
|
|
7
|
+
Geode_Viewables.egg-info/dependency_links.txt
|
|
8
|
+
Geode_Viewables.egg-info/requires.txt
|
|
9
|
+
Geode_Viewables.egg-info/top_level.txt
|
|
10
|
+
geode_viewables/__init__.py
|
|
11
|
+
geode_viewables/conversion.py
|
|
12
|
+
geode_viewables/qem_proxy.py
|
|
13
|
+
geode_viewables/lib64/geode_viewables_py_conversion.cpython-312-x86_64-linux-gnu.so
|
|
14
|
+
geode_viewables/lib64/geode_viewables_py_qem_proxy.cpython-312-x86_64-linux-gnu.so
|
|
15
|
+
geode_viewables/lib64/libGeode-Viewables_conversion.so
|
|
16
|
+
geode_viewables/lib64/libGeode-Viewables_qem_proxy.so
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
geode_viewables
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: Geode-Viewables
|
|
3
|
+
Version: 3.0.0rc1
|
|
4
|
+
Summary: Geode module to objects visualization
|
|
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==32.*,>=32.0.0rc1
|
|
10
|
+
Requires-Dist: opengeode-core==15.*,>=15.0.0rc2
|
|
11
|
+
Requires-Dist: opengeode-geosciences==8.*,>=8.0.0rc1
|
|
12
|
+
Requires-Dist: opengeode-io==7.*,>=7.0.0rc1
|
|
13
|
+
|
|
14
|
+
<h1 align="center">Geode-Viewables<sup><i>by Geode-solutions</i></sup></h1>
|
|
15
|
+
<h3 align="center">Utilities to help visualizing OpenGeode objects</h3>
|
|
16
|
+
|
|
17
|
+
<p align="center">
|
|
18
|
+
<img src="https://github.com/Geode-solutions/Geode-Viewables_private/workflows/CI/badge.svg" alt="Build Status">
|
|
19
|
+
<img src="https://github.com/Geode-solutions/Geode-Viewables_private/workflows/CD/badge.svg" alt="Deploy Status">
|
|
20
|
+
<img src="https://img.shields.io/github/release/Geode-solutions/Geode-Viewables_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-11-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://geode-solutions.com/#slack">
|
|
34
|
+
<img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
|
|
35
|
+
</a>
|
|
36
|
+
</p>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<h1 align="center">Geode-Viewables<sup><i>by Geode-solutions</i></sup></h1>
|
|
2
|
+
<h3 align="center">Utilities to help visualizing OpenGeode objects</h3>
|
|
3
|
+
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="https://github.com/Geode-solutions/Geode-Viewables_private/workflows/CI/badge.svg" alt="Build Status">
|
|
6
|
+
<img src="https://github.com/Geode-solutions/Geode-Viewables_private/workflows/CD/badge.svg" alt="Deploy Status">
|
|
7
|
+
<img src="https://img.shields.io/github/release/Geode-solutions/Geode-Viewables_private.svg" alt="Version">
|
|
8
|
+
<img src="https://img.shields.io/pypi/v/geode-simplex" alt="PyPI" >
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
<img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
|
|
13
|
+
<img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
|
|
14
|
+
<img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
|
|
15
|
+
</p>
|
|
16
|
+
|
|
17
|
+
<p align="center">
|
|
18
|
+
<img src="https://img.shields.io/badge/C%2B%2B-11-blue.svg" alt="Language">
|
|
19
|
+
<img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
|
|
20
|
+
<a href="https://geode-solutions.com/#slack">
|
|
21
|
+
<img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
|
|
22
|
+
</a>
|
|
23
|
+
</p>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Copyright (c) 2019 - 2024 Geode-solutions
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
# SOFTWARE.
|
|
20
|
+
|
|
21
|
+
import opengeode
|
|
22
|
+
import opengeode_io
|
|
23
|
+
import opengeode_geosciences
|
|
24
|
+
|
|
25
|
+
from .lib64.geode_viewables_py_conversion import *
|
|
26
|
+
ViewablesConversionLibrary.initialize()
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Copyright (c) 2019 - 2024 Geode-solutions
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
# SOFTWARE.
|
|
20
|
+
|
|
21
|
+
import opengeode
|
|
22
|
+
import geode_common
|
|
23
|
+
|
|
24
|
+
from .lib64.geode_viewables_py_qem_proxy import *
|
|
25
|
+
ViewablesQEMProxyLibrary.initialize()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Copyright (c) 2019 - 2024 Geode-solutions
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
# SOFTWARE.
|
|
20
|
+
|
|
21
|
+
[build-system]
|
|
22
|
+
requires = ["setuptools", "wheel"]
|
|
23
|
+
build-backend = "setuptools.build_meta"
|
|
24
|
+
|
|
25
|
+
[project]
|
|
26
|
+
name = "Geode-Viewables"
|
|
27
|
+
version = "3.0.0-rc.1"
|
|
28
|
+
description = "Geode module to objects visualization"
|
|
29
|
+
authors = [{name = "Geode-solutions", email = "contact@geode-solutions.com"}]
|
|
30
|
+
requires-python = ">=3.9,<3.13"
|
|
31
|
+
license = {text = "Proprietary"}
|
|
32
|
+
dynamic = ["dependencies", "readme"]
|
|
33
|
+
|
|
34
|
+
[tool.setuptools]
|
|
35
|
+
packages = ["geode_viewables"]
|
|
36
|
+
|
|
37
|
+
[tool.setuptools.dynamic]
|
|
38
|
+
dependencies = {file = "requirements.txt"}
|
|
39
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.package-data]
|
|
42
|
+
"geode_viewables" = ["*/*.so", "*/*.so.*", "*/*.dll", "*/*.pyd", "share/*/*.db"]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This file is autogenerated by pip-compile with Python 3.10
|
|
3
|
+
# by the following command:
|
|
4
|
+
#
|
|
5
|
+
# pip-compile --pre bindings/python/requirements.in
|
|
6
|
+
#
|
|
7
|
+
geode-common==32.*,>=32.0.0rc1
|
|
8
|
+
# via -r bindings/python/requirements.in
|
|
9
|
+
opengeode-core==15.*,>=15.0.0rc2
|
|
10
|
+
# via
|
|
11
|
+
# -r bindings/python/requirements.in
|
|
12
|
+
# geode-common
|
|
13
|
+
# opengeode-geosciences
|
|
14
|
+
# opengeode-io
|
|
15
|
+
opengeode-geosciences==8.*,>=8.0.0rc1
|
|
16
|
+
# via -r bindings/python/requirements.in
|
|
17
|
+
opengeode-io==7.*,>=7.0.0rc1
|
|
18
|
+
# via -r bindings/python/requirements.in
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Copyright (c) 2019 - 2024 Geode-solutions
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the 'Software'), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
# SOFTWARE.
|
|
20
|
+
#
|
|
21
|
+
# Most project configs are in `pyproject.toml`
|
|
22
|
+
# => Prefer to modify `pyproject.toml` over this file if possible.
|
|
23
|
+
|
|
24
|
+
from setuptools import setup
|
|
25
|
+
from setuptools.dist import Distribution
|
|
26
|
+
from setuptools.command.install import install
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class BinaryDistribution(Distribution):
|
|
30
|
+
def has_ext_modules(self):
|
|
31
|
+
return True
|
|
32
|
+
|
|
33
|
+
def is_pure(self):
|
|
34
|
+
return False
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class InstallPlatlib(install):
|
|
38
|
+
def finalize_options(self):
|
|
39
|
+
install.finalize_options(self)
|
|
40
|
+
self.install_lib = self.install_platlib
|
|
41
|
+
|
|
42
|
+
setup(
|
|
43
|
+
distclass=BinaryDistribution,
|
|
44
|
+
cmdclass={'install': InstallPlatlib}
|
|
45
|
+
)
|