Vease-Viewer 0.2.3__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.3
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,7 @@
1
+ vease_viewer/app.py,sha256=31wk8nz7dCSqDeVrSZ421zfi3VbXmf_welXTSbSfMy4,217
2
+ Vease_Viewer-0.2.3.dist-info/LICENSE,sha256=mCqVv7oI0gi34gXQr9z46E5t6MRtMBbtGpcecM8jye8,1072
3
+ Vease_Viewer-0.2.3.dist-info/METADATA,sha256=EIwxkOzA5xNOkWaU-NcccZD38PnoJXKBacc3r94O2ZM,1591
4
+ Vease_Viewer-0.2.3.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
5
+ Vease_Viewer-0.2.3.dist-info/entry_points.txt,sha256=n39U_EW4l0moq5yJ-yavxNP3WHf_L5AITJpez8H2TWg,61
6
+ Vease_Viewer-0.2.3.dist-info/top_level.txt,sha256=ulf1U3rlf8f1kleu7P2T6vZIhVgwi5aS1_qgNaSwiwA,13
7
+ Vease_Viewer-0.2.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ vease-viewer = vease_viewer.app:run_viewer
@@ -0,0 +1 @@
1
+ vease_viewer
vease_viewer/app.py ADDED
@@ -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()