Skip to content

Commit 00263b5

Browse files
author
Sebastian Schilling
committed
v1.2
1 parent b5d2a8a commit 00263b5

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ __pycache__
44
*.rvt
55
main_command.py
66
dist
7-
build
8-
build.spec
7+
build

build.spec

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# filepath: d:\03_Git_Projekte\IfcPropertySetClassificationConverter\build.spec
2+
# -*- mode: python ; coding: utf-8 -*-
3+
4+
block_cipher = None
5+
6+
a = Analysis(
7+
['main.py'],
8+
pathex=['d:\\03_Git_Projekte\\IfcPropertySetClassificationConverter'],
9+
binaries=[],
10+
datas=[('logo.ico', '.'), ('ConvertToPropertySet.py', '.'), ('ConvertToClassification.py', '.')],
11+
hiddenimports=[],
12+
hookspath=[],
13+
runtime_hooks=[],
14+
excludes=[],
15+
win_no_prefer_redirects=False,
16+
win_private_assemblies=False,
17+
cipher=block_cipher,
18+
)
19+
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
20+
21+
exe = EXE(
22+
pyz,
23+
a.scripts,
24+
[],
25+
exclude_binaries=True,
26+
name='IfcClassificationConverter',
27+
debug=False,
28+
bootloader_ignore_signals=False,
29+
strip=False,
30+
upx=True,
31+
console=False,
32+
icon='logo.ico'
33+
)
34+
35+
coll = COLLECT(
36+
exe,
37+
a.binaries,
38+
a.zipfiles,
39+
a.datas,
40+
strip=False,
41+
upx=True,
42+
upx_exclude=[],
43+
name='IfcClassificationConverter'
44+
)

0 commit comments

Comments
 (0)