Vease-Viewer 2.3.13rc1__tar.gz → 2.3.14rc1__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.

Potentially problematic release.


This version of Vease-Viewer might be problematic. Click here for more details.

@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: Vease-Viewer
3
+ Version: 2.3.14rc1
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.13,>=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Provides-Extra: gpu
15
+ Requires-Dist: vtk==9.3.1; extra == "gpu"
16
+ Provides-Extra: cpu
17
+ Requires-Dist: vtk-osmesa==9.3.1; extra == "cpu"
18
+ Dynamic: license-file
19
+
20
+ # Vease-Viewer
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "Vease-Viewer"
8
- version = "2.3.13-rc.1"
8
+ version = "2.3.14-rc.1"
9
9
  dynamic = ["dependencies"]
10
10
  authors = [
11
11
  { name="Geode-solutions", email="team-web@geode-solutions.com" },
@@ -20,7 +20,8 @@ classifiers = [
20
20
  ]
21
21
 
22
22
  [project.optional-dependencies]
23
- gpu = ["vtk == 9.*"]
23
+ gpu = ["vtk == 9.3.1"]
24
+ cpu = ["vtk-osmesa == 9.3.1"]
24
25
 
25
26
  [project.urls]
26
27
  "Homepage" = "https://github.com/Geode-solutions/Vease-Viewer"
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: Vease-Viewer
3
+ Version: 2.3.14rc1
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.13,>=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Provides-Extra: gpu
15
+ Requires-Dist: vtk==9.3.1; extra == "gpu"
16
+ Provides-Extra: cpu
17
+ Requires-Dist: vtk-osmesa==9.3.1; extra == "cpu"
18
+ Dynamic: license-file
19
+
20
+ # Vease-Viewer
@@ -1,7 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- requirements_gpu.txt
5
4
  src/Vease_Viewer.egg-info/PKG-INFO
6
5
  src/Vease_Viewer.egg-info/SOURCES.txt
7
6
  src/Vease_Viewer.egg-info/dependency_links.txt
@@ -10,4 +9,5 @@ src/Vease_Viewer.egg-info/requires.txt
10
9
  src/Vease_Viewer.egg-info/top_level.txt
11
10
  src/vease_viewer/app.py
12
11
  src/vease_viewer/rpc/protocols.py
13
- src/vease_viewer/rpc/schemas/microservice_version.json
12
+ src/vease_viewer/rpc/schemas/microservice_version.json
13
+ tests/test_empty.py
@@ -0,0 +1,6 @@
1
+
2
+ [cpu]
3
+ vtk-osmesa==9.3.1
4
+
5
+ [gpu]
6
+ vtk==9.3.1
@@ -6,14 +6,16 @@ from opengeodeweb_viewer.vtkw_server import _Server, run_server
6
6
  # Local application imports
7
7
  from vease_viewer.rpc.protocols import VtkVeaseViewerView
8
8
 
9
+
9
10
  class VeaseViewerServer(_Server):
10
11
  def initialize(self):
11
12
  _Server.initialize(self)
12
13
  self.registerVtkWebProtocol(VtkVeaseViewerView())
13
-
14
+
14
15
 
15
16
  def run_viewer():
16
17
  run_server(VeaseViewerServer)
17
18
 
19
+
18
20
  if __name__ == "__main__":
19
21
  run_viewer()
@@ -9,6 +9,7 @@ from wslink import register as exportRpc
9
9
 
10
10
  # Local application imports
11
11
 
12
+
12
13
  class VtkVeaseViewerView(vtk_protocols.vtkWebProtocol):
13
14
  prefix = "vease_viewer."
14
15
  schemas_dict = get_schemas_dict(os.path.join(os.path.dirname(__file__), "schemas"))
@@ -18,7 +19,11 @@ class VtkVeaseViewerView(vtk_protocols.vtkWebProtocol):
18
19
 
19
20
  @exportRpc(prefix + schemas_dict["microservice_version"]["rpc"])
20
21
  def microservice_version(self, params):
21
- print(self.prefix + self.schemas_dict["microservice_version"]["rpc"], f"{params=}", flush=True)
22
+ print(
23
+ self.prefix + self.schemas_dict["microservice_version"]["rpc"],
24
+ f"{params=}",
25
+ flush=True,
26
+ )
22
27
  validate_schema(params, self.schemas_dict["microservice_version"])
23
28
 
24
- return {"microservice_version": metadata.distribution("vease_viewer").version}
29
+ return {"microservice_version": metadata.distribution("vease_viewer").version}
@@ -0,0 +1,2 @@
1
+ def test_placeholder():
2
+ assert True # Placeholder for actual test cases
@@ -1,45 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: Vease-Viewer
3
- Version: 2.3.13rc1
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.13,>=3.9
12
- Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Requires-Dist: aiohappyeyeballs==2.6.1
15
- Requires-Dist: aiohttp==3.12.14
16
- Requires-Dist: aiosignal==1.4.0
17
- Requires-Dist: async-timeout==5.0.1
18
- Requires-Dist: attrs==25.3.0
19
- Requires-Dist: contourpy==1.3.2
20
- Requires-Dist: cycler==0.12.1
21
- Requires-Dist: fastjsonschema==2.21.1
22
- Requires-Dist: fonttools==4.59.0
23
- Requires-Dist: frozenlist==1.7.0
24
- Requires-Dist: idna==3.10
25
- Requires-Dist: kiwisolver==1.4.8
26
- Requires-Dist: matplotlib==3.10.3
27
- Requires-Dist: multidict==6.6.3
28
- Requires-Dist: numpy==2.2.6
29
- Requires-Dist: opengeodeweb-viewer[gpu]==1.10.0
30
- Requires-Dist: packaging==25.0
31
- Requires-Dist: pillow==11.3.0
32
- Requires-Dist: propcache==0.3.2
33
- Requires-Dist: pyparsing==3.2.3
34
- Requires-Dist: python-dateutil==2.9.0.post0
35
- Requires-Dist: six==1.17.0
36
- Requires-Dist: typing-extensions==4.14.1
37
- Requires-Dist: vtk==9.3.1
38
- Requires-Dist: websocket-client==1.8.0
39
- Requires-Dist: wslink==1.12.4
40
- Requires-Dist: yarl==1.20.1
41
- Provides-Extra: gpu
42
- Requires-Dist: vtk==9.*; extra == "gpu"
43
- Dynamic: license-file
44
-
45
- # Vease-Viewer
@@ -1,88 +0,0 @@
1
- #
2
- # This file is autogenerated by pip-compile with Python 3.10
3
- # by the following command:
4
- #
5
- # pip-compile requirements_gpu.in
6
- #
7
- aiohappyeyeballs==2.6.1
8
- # via
9
- # aiohttp
10
- # opengeodeweb-viewer
11
- aiohttp==3.12.14
12
- # via
13
- # opengeodeweb-viewer
14
- # wslink
15
- aiosignal==1.4.0
16
- # via
17
- # aiohttp
18
- # opengeodeweb-viewer
19
- async-timeout==5.0.1
20
- # via
21
- # aiohttp
22
- # opengeodeweb-viewer
23
- attrs==25.3.0
24
- # via
25
- # aiohttp
26
- # opengeodeweb-viewer
27
- contourpy==1.3.2
28
- # via matplotlib
29
- cycler==0.12.1
30
- # via matplotlib
31
- fastjsonschema==2.21.1
32
- # via opengeodeweb-viewer
33
- fonttools==4.59.0
34
- # via matplotlib
35
- frozenlist==1.7.0
36
- # via
37
- # aiohttp
38
- # aiosignal
39
- # opengeodeweb-viewer
40
- idna==3.10
41
- # via
42
- # opengeodeweb-viewer
43
- # yarl
44
- kiwisolver==1.4.8
45
- # via matplotlib
46
- matplotlib==3.10.3
47
- # via vtk
48
- multidict==6.6.3
49
- # via
50
- # aiohttp
51
- # opengeodeweb-viewer
52
- # yarl
53
- numpy==2.2.6
54
- # via
55
- # contourpy
56
- # matplotlib
57
- opengeodeweb-viewer[gpu]==1.10.0
58
- # via -r requirements_gpu.in
59
- packaging==25.0
60
- # via matplotlib
61
- pillow==11.3.0
62
- # via matplotlib
63
- propcache==0.3.2
64
- # via
65
- # aiohttp
66
- # opengeodeweb-viewer
67
- # yarl
68
- pyparsing==3.2.3
69
- # via matplotlib
70
- python-dateutil==2.9.0.post0
71
- # via matplotlib
72
- six==1.17.0
73
- # via python-dateutil
74
- typing-extensions==4.14.1
75
- # via
76
- # aiosignal
77
- # multidict
78
- # opengeodeweb-viewer
79
- vtk==9.3.1
80
- # via opengeodeweb-viewer
81
- websocket-client==1.8.0
82
- # via opengeodeweb-viewer
83
- wslink==1.12.4
84
- # via opengeodeweb-viewer
85
- yarl==1.20.1
86
- # via
87
- # aiohttp
88
- # opengeodeweb-viewer
@@ -1,45 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: Vease-Viewer
3
- Version: 2.3.13rc1
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.13,>=3.9
12
- Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Requires-Dist: aiohappyeyeballs==2.6.1
15
- Requires-Dist: aiohttp==3.12.14
16
- Requires-Dist: aiosignal==1.4.0
17
- Requires-Dist: async-timeout==5.0.1
18
- Requires-Dist: attrs==25.3.0
19
- Requires-Dist: contourpy==1.3.2
20
- Requires-Dist: cycler==0.12.1
21
- Requires-Dist: fastjsonschema==2.21.1
22
- Requires-Dist: fonttools==4.59.0
23
- Requires-Dist: frozenlist==1.7.0
24
- Requires-Dist: idna==3.10
25
- Requires-Dist: kiwisolver==1.4.8
26
- Requires-Dist: matplotlib==3.10.3
27
- Requires-Dist: multidict==6.6.3
28
- Requires-Dist: numpy==2.2.6
29
- Requires-Dist: opengeodeweb-viewer[gpu]==1.10.0
30
- Requires-Dist: packaging==25.0
31
- Requires-Dist: pillow==11.3.0
32
- Requires-Dist: propcache==0.3.2
33
- Requires-Dist: pyparsing==3.2.3
34
- Requires-Dist: python-dateutil==2.9.0.post0
35
- Requires-Dist: six==1.17.0
36
- Requires-Dist: typing-extensions==4.14.1
37
- Requires-Dist: vtk==9.3.1
38
- Requires-Dist: websocket-client==1.8.0
39
- Requires-Dist: wslink==1.12.4
40
- Requires-Dist: yarl==1.20.1
41
- Provides-Extra: gpu
42
- Requires-Dist: vtk==9.*; extra == "gpu"
43
- Dynamic: license-file
44
-
45
- # Vease-Viewer
@@ -1,30 +0,0 @@
1
- aiohappyeyeballs==2.6.1
2
- aiohttp==3.12.14
3
- aiosignal==1.4.0
4
- async-timeout==5.0.1
5
- attrs==25.3.0
6
- contourpy==1.3.2
7
- cycler==0.12.1
8
- fastjsonschema==2.21.1
9
- fonttools==4.59.0
10
- frozenlist==1.7.0
11
- idna==3.10
12
- kiwisolver==1.4.8
13
- matplotlib==3.10.3
14
- multidict==6.6.3
15
- numpy==2.2.6
16
- opengeodeweb-viewer[gpu]==1.10.0
17
- packaging==25.0
18
- pillow==11.3.0
19
- propcache==0.3.2
20
- pyparsing==3.2.3
21
- python-dateutil==2.9.0.post0
22
- six==1.17.0
23
- typing-extensions==4.14.1
24
- vtk==9.3.1
25
- websocket-client==1.8.0
26
- wslink==1.12.4
27
- yarl==1.20.1
28
-
29
- [gpu]
30
- vtk==9.*