1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<!DOCTYPE RCC>
<RCC version="1.0">
<qresource prefix="/core">
<!-- no requirements -> default packages are enough
Note: scripts will be run in alphabetical order, not the order as set here
-->
<file>pythonscript/python_version.py</file>
<file>pythonscript/numpy.py</file>
<file>pythonscript/application.py</file>
<file>pythonscript/action.py</file>
<file>pythonscript/image_component.py</file>
<file>pythonscript/mesh_component.py</file>
</qresource>
<qresource prefix="/numpy_imagecomponent">
<!-- no requirements -> default packages are enough -->
<file>pythonscript/numpy_imagecomponent.py</file>
</qresource>
<qresource prefix="/test_vtk">
<file alias="requirements.txt">pythonscript/requirements_vtk.txt</file>
<!-- Note: do NOT call the script just vtk.py, python will not be able to load the vtk package! -->
<file>pythonscript/test_vtk.py</file>
</qresource>
</RCC>
|