-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (27 loc) · 872 Bytes
/
setup.py
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
26
27
28
29
30
31
32
import sys
from cx_Freeze import setup, Executable
sys.argv.append('build')
options = {'build_exe':
{'compressed': True,
'includes': [],
'excludes': [],
'include_files': ['icon48x48.ico',
'Reg_Install.reg',
'Reg_Uninstall.reg'],
}
}
# base = None
# if sys.platform == 'win32':
# base = 'Win32GUI'
executables = [Executable('igs_stp_header_parser.py',
icon='icon48x48.ico',
base='Win32GUI', # base='Console',
targetName='igs_stp_header_parser.exe')]
setup(name='igs_stp_header_parser',
version='0.1',
description='igs_stp_header_parser',
# author='',
# author_email='',
options=options,
executables=executables
)