Skip to content
Snippets Groups Projects
Commit 1b6425b2 authored by Boman Romain's avatar Boman Romain
Browse files

add pyinstaller files

parent 03afa44f
Branches devel/bb2024
No related tags found
No related merge requests found
Pipeline #23820 passed
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['fossils.py'],
pathex=['cxxfem/build/bin'],
binaries=[],
datas=[
(r'cxxfem/tests/parallelepiped.geo',r'models/others'),
(r'cxxfem/tests/beam2d.py',r'models/others'),
(r'cxxfem/tests/beam3d.py',r'models/others'),
(r'models/dolicorhynchops/dolicorhynchops_10k.py',r'models/others/dolicorhynchops'),
(r'models/dolicorhynchops/10k',r'models/others/dolicorhynchops/10k'),
(r'models/Panthera_pardus/Panthera_pardus_RC_30.py',r'models/paper/Panthera_pardus'),
(r'models/Panthera_pardus/150k',r'models/paper/Panthera_pardus/150k'),
(r'models/Tapirus_indicus/T_indicus_shoulder50k.py',r'models/paper/Tapirus_indicus'),
(r'models/Tapirus_indicus/50k',r'models/paper/Tapirus_indicus/50k'),
(r'models/TYLnep/TYLnep_500k_15_1.py',r'models/paper/TYLnep'),
(r'models/TYLnep/500k',r'models/paper/TYLnep/500k')
],
hiddenimports=['cxxfem','femi','gmsh','models.bonemodel2','vtkmodules','vtkmodules.all','vtkmodules.qt.QVTKRenderWindowInteractor','vtkmodules.util','vtkmodules.util.numpy_support'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='fossils',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='fossils',
)
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment