Vease-Viewer 0.2.3rc1__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Geode-solutions
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.1
2
+ Name: Vease-Viewer
3
+ Version: 0.2.3rc1
4
+ Summary: Vease-Viewer is the viewer microservice of Vease
5
+ Author-email: Geode-solutions <team-web@geode-solutions.com>
6
+ Project-URL: Homepage, https://github.com/Geode-solutions/Vease-Viewer
7
+ Project-URL: Bug Tracker, https://github.com/Geode-solutions/Vease-Viewer/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: aiohttp==3.9.3
15
+ Requires-Dist: aiosignal==1.3.1
16
+ Requires-Dist: async-timeout==4.0.3
17
+ Requires-Dist: attrs==23.2.0
18
+ Requires-Dist: contourpy==1.3.0
19
+ Requires-Dist: cycler==0.12.1
20
+ Requires-Dist: fonttools==4.54.1
21
+ Requires-Dist: frozenlist==1.4.1
22
+ Requires-Dist: idna==3.6
23
+ Requires-Dist: jsonschema==4.21.1
24
+ Requires-Dist: jsonschema-specifications==2023.12.1
25
+ Requires-Dist: kiwisolver==1.4.7
26
+ Requires-Dist: matplotlib==3.9.2
27
+ Requires-Dist: multidict==6.0.5
28
+ Requires-Dist: numpy==2.1.2
29
+ Requires-Dist: opengeodeweb-viewer[gpu]==0.2.1
30
+ Requires-Dist: packaging==24.1
31
+ Requires-Dist: pillow==11.0.0
32
+ Requires-Dist: pyparsing==3.2.0
33
+ Requires-Dist: python-dateutil==2.9.0.post0
34
+ Requires-Dist: python-dotenv==1.0.1
35
+ Requires-Dist: referencing==0.33.0
36
+ Requires-Dist: rpds-py==0.18.0
37
+ Requires-Dist: six==1.16.0
38
+ Requires-Dist: vtk==9.3.1
39
+ Requires-Dist: websocket-client==1.7.0
40
+ Requires-Dist: wslink==1.12.4
41
+ Requires-Dist: yarl==1.9.4
42
+ Provides-Extra: gpu
43
+ Requires-Dist: vtk==9.*; extra == "gpu"
44
+
45
+ # Vease-Viewer
@@ -0,0 +1 @@
1
+ # Vease-Viewer
@@ -0,0 +1,55 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+
6
+ [project]
7
+ name = "Vease-Viewer"
8
+ version = "0.2.3-rc.1"
9
+ dynamic = ["dependencies"]
10
+ authors = [
11
+ { name="Geode-solutions", email="team-web@geode-solutions.com" },
12
+ ]
13
+ description = "Vease-Viewer is the viewer microservice of Vease"
14
+ readme = "README.md"
15
+ requires-python = ">=3.8"
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ]
21
+
22
+ [project.optional-dependencies]
23
+ gpu = ["vtk == 9.*"]
24
+
25
+ [project.urls]
26
+ "Homepage" = "https://github.com/Geode-solutions/Vease-Viewer"
27
+ "Bug Tracker" = "https://github.com/Geode-solutions/Vease-Viewer/issues"
28
+
29
+ [project.scripts]
30
+ vease-viewer = "vease_viewer.app:run_viewer"
31
+
32
+
33
+ [tool.setuptools.dynamic]
34
+ dependencies = {file = ["requirements_gpu.txt"]}
35
+
36
+ [tool.setuptools.packages.find]
37
+ where = ["src"]
38
+
39
+ [tool.setuptools.package-data]
40
+ "vease_viewer.rpc.schemas" = ["*.json"]
41
+
42
+ [tool.semantic_release]
43
+ version_toml = [
44
+ "pyproject.toml:project.version",
45
+ ]
46
+
47
+ [tool.semantic_release.remote.token]
48
+ env = "GH_TOKEN"
49
+
50
+ [tool.semantic_release.branches.master]
51
+ match = "master"
52
+
53
+ [tool.semantic_release.branches.next]
54
+ match = "next"
55
+ prerelease = true
@@ -0,0 +1,90 @@
1
+ #
2
+ # This file is autogenerated by pip-compile with Python 3.11
3
+ # by the following command:
4
+ #
5
+ # pip-compile requirements_gpu.in
6
+ #
7
+ aiohttp==3.9.3
8
+ # via
9
+ # opengeodeweb-viewer
10
+ # wslink
11
+ aiosignal==1.3.1
12
+ # via
13
+ # aiohttp
14
+ # opengeodeweb-viewer
15
+ async-timeout==4.0.3
16
+ # via opengeodeweb-viewer
17
+ attrs==23.2.0
18
+ # via
19
+ # aiohttp
20
+ # jsonschema
21
+ # opengeodeweb-viewer
22
+ # referencing
23
+ contourpy==1.3.0
24
+ # via matplotlib
25
+ cycler==0.12.1
26
+ # via matplotlib
27
+ fonttools==4.54.1
28
+ # via matplotlib
29
+ frozenlist==1.4.1
30
+ # via
31
+ # aiohttp
32
+ # aiosignal
33
+ # opengeodeweb-viewer
34
+ idna==3.6
35
+ # via
36
+ # opengeodeweb-viewer
37
+ # yarl
38
+ jsonschema==4.21.1
39
+ # via opengeodeweb-viewer
40
+ jsonschema-specifications==2023.12.1
41
+ # via
42
+ # jsonschema
43
+ # opengeodeweb-viewer
44
+ kiwisolver==1.4.7
45
+ # via matplotlib
46
+ matplotlib==3.9.2
47
+ # via vtk
48
+ multidict==6.0.5
49
+ # via
50
+ # aiohttp
51
+ # opengeodeweb-viewer
52
+ # yarl
53
+ numpy==2.1.2
54
+ # via
55
+ # contourpy
56
+ # matplotlib
57
+ opengeodeweb-viewer[gpu]==0.2.1
58
+ # via -r requirements_gpu.in
59
+ packaging==24.1
60
+ # via matplotlib
61
+ pillow==11.0.0
62
+ # via matplotlib
63
+ pyparsing==3.2.0
64
+ # via matplotlib
65
+ python-dateutil==2.9.0.post0
66
+ # via matplotlib
67
+ python-dotenv==1.0.1
68
+ # via opengeodeweb-viewer
69
+ referencing==0.33.0
70
+ # via
71
+ # jsonschema
72
+ # jsonschema-specifications
73
+ # opengeodeweb-viewer
74
+ rpds-py==0.18.0
75
+ # via
76
+ # jsonschema
77
+ # opengeodeweb-viewer
78
+ # referencing
79
+ six==1.16.0
80
+ # via python-dateutil
81
+ vtk==9.3.1
82
+ # via opengeodeweb-viewer
83
+ websocket-client==1.7.0
84
+ # via opengeodeweb-viewer
85
+ wslink==1.12.4
86
+ # via opengeodeweb-viewer
87
+ yarl==1.9.4
88
+ # via
89
+ # aiohttp
90
+ # opengeodeweb-viewer
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.1
2
+ Name: Vease-Viewer
3
+ Version: 0.2.3rc1
4
+ Summary: Vease-Viewer is the viewer microservice of Vease
5
+ Author-email: Geode-solutions <team-web@geode-solutions.com>
6
+ Project-URL: Homepage, https://github.com/Geode-solutions/Vease-Viewer
7
+ Project-URL: Bug Tracker, https://github.com/Geode-solutions/Vease-Viewer/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: aiohttp==3.9.3
15
+ Requires-Dist: aiosignal==1.3.1
16
+ Requires-Dist: async-timeout==4.0.3
17
+ Requires-Dist: attrs==23.2.0
18
+ Requires-Dist: contourpy==1.3.0
19
+ Requires-Dist: cycler==0.12.1
20
+ Requires-Dist: fonttools==4.54.1
21
+ Requires-Dist: frozenlist==1.4.1
22
+ Requires-Dist: idna==3.6
23
+ Requires-Dist: jsonschema==4.21.1
24
+ Requires-Dist: jsonschema-specifications==2023.12.1
25
+ Requires-Dist: kiwisolver==1.4.7
26
+ Requires-Dist: matplotlib==3.9.2
27
+ Requires-Dist: multidict==6.0.5
28
+ Requires-Dist: numpy==2.1.2
29
+ Requires-Dist: opengeodeweb-viewer[gpu]==0.2.1
30
+ Requires-Dist: packaging==24.1
31
+ Requires-Dist: pillow==11.0.0
32
+ Requires-Dist: pyparsing==3.2.0
33
+ Requires-Dist: python-dateutil==2.9.0.post0
34
+ Requires-Dist: python-dotenv==1.0.1
35
+ Requires-Dist: referencing==0.33.0
36
+ Requires-Dist: rpds-py==0.18.0
37
+ Requires-Dist: six==1.16.0
38
+ Requires-Dist: vtk==9.3.1
39
+ Requires-Dist: websocket-client==1.7.0
40
+ Requires-Dist: wslink==1.12.4
41
+ Requires-Dist: yarl==1.9.4
42
+ Provides-Extra: gpu
43
+ Requires-Dist: vtk==9.*; extra == "gpu"
44
+
45
+ # Vease-Viewer
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ requirements_gpu.txt
5
+ src/Vease_Viewer.egg-info/PKG-INFO
6
+ src/Vease_Viewer.egg-info/SOURCES.txt
7
+ src/Vease_Viewer.egg-info/dependency_links.txt
8
+ src/Vease_Viewer.egg-info/entry_points.txt
9
+ src/Vease_Viewer.egg-info/requires.txt
10
+ src/Vease_Viewer.egg-info/top_level.txt
11
+ src/vease_viewer/app.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ vease-viewer = vease_viewer.app:run_viewer
@@ -0,0 +1,31 @@
1
+ aiohttp==3.9.3
2
+ aiosignal==1.3.1
3
+ async-timeout==4.0.3
4
+ attrs==23.2.0
5
+ contourpy==1.3.0
6
+ cycler==0.12.1
7
+ fonttools==4.54.1
8
+ frozenlist==1.4.1
9
+ idna==3.6
10
+ jsonschema==4.21.1
11
+ jsonschema-specifications==2023.12.1
12
+ kiwisolver==1.4.7
13
+ matplotlib==3.9.2
14
+ multidict==6.0.5
15
+ numpy==2.1.2
16
+ opengeodeweb-viewer[gpu]==0.2.1
17
+ packaging==24.1
18
+ pillow==11.0.0
19
+ pyparsing==3.2.0
20
+ python-dateutil==2.9.0.post0
21
+ python-dotenv==1.0.1
22
+ referencing==0.33.0
23
+ rpds-py==0.18.0
24
+ six==1.16.0
25
+ vtk==9.3.1
26
+ websocket-client==1.7.0
27
+ wslink==1.12.4
28
+ yarl==1.9.4
29
+
30
+ [gpu]
31
+ vtk==9.*
@@ -0,0 +1 @@
1
+ vease_viewer
@@ -0,0 +1,13 @@
1
+ # Standard library imports
2
+
3
+ # Third party imports
4
+ from opengeodeweb_viewer import vtkw_server
5
+
6
+ # Local application imports
7
+
8
+
9
+ def run_viewer():
10
+ vtkw_server.run_server()
11
+
12
+ if __name__ == "__main__":
13
+ run_viewer()