File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,4 +129,5 @@ dmypy.json
129129* .zip
130130* .qm
131131
132- loopstructural /embedded_external_libs /*
132+ loopstructural /embedded_external_libs /*
133+ .DS_Store
Original file line number Diff line number Diff line change @@ -24,3 +24,4 @@ qgisMaximumVersion=3.99
2424version=0.1.0
2525changelog=
2626
27+ plugin_dependencies=qpip
Original file line number Diff line number Diff line change 2323 __title__ ,
2424 __uri_homepage__ ,
2525)
26+ try :
27+ import LoopStructural
28+ except ImportError :
29+ raise ImportError (
30+ "LoopStructural is not installed. Please install it using the requirements.txt file in the plugin directory."
31+ )
32+ try :
33+ import pyvistaqt
34+ except ImportError :
35+ raise ImportError (
36+ "pyvistaqt is not installed. Please install it using the requirements.txt file in the plugin directory."
37+ )
2638from loopstructural .gui .dlg_settings import PlgOptionsFactory
2739from loopstructural .gui .modelling .modelling_widget import ModellingWidget as Modelling
2840from loopstructural .toolbelt import PlgLogger
Original file line number Diff line number Diff line change 1+ pyvistaqt
2+ LoopStructural [all ]
You can’t perform that action at this time.
0 commit comments