Initial commit — QGIS S-57 Converter
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
import pyproj, os
|
||||
_proj_data = pyproj.datadir.get_data_dir()
|
||||
|
||||
a = Analysis(
|
||||
['gui.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=[
|
||||
('cell_config.json', '.'),
|
||||
('noaa_ddr_template.bin', '.'),
|
||||
('CAPAS_REFERENCIA.pdf', '.'),
|
||||
('s57_objects.json', '.'),
|
||||
('MANUAL.html', '.'),
|
||||
(_proj_data, 'proj_data'), # PROJ grid files for pyproj
|
||||
],
|
||||
hiddenimports=['converter', 's57_writer', 'pyproj', 'pyproj.datadir'],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
noarchive=False,
|
||||
optimize=0,
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
[],
|
||||
name='QGISS57Converter',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
)
|
||||
Reference in New Issue
Block a user