-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (58 loc) · 1.31 KB
/
setup.py
File metadata and controls
62 lines (58 loc) · 1.31 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need
# fine tuning.
build_options = {
'packages': [],
'excludes': [],
'optimize': 1,
'include_files': [
('locale/', 'locale/'),
('explo/img/', 'img/'),
],
'include_msvcr': True,
'zip_include_packages': [
'cffi',
'cffi-1.14.1.dist-info',
'collections',
'concurrent',
'ctypes',
'curses',
'distutils',
'email',
'encodings',
'explo',
'html',
'http',
'importlib',
'json',
'lib2to3',
'logging',
'multiprocessing',
'numpy',
'numpy-1.19.1.dist-info',
'pkg_resources',
'pycparser',
'pycparser-2.20.dist-info',
'pydoc_data',
'setuptools',
'setuptools-46.4.0.dist-info',
'unittest',
'urllib',
'win32com',
'wx',
'xml',
'xmlrpc',
],
}
base = 'Win32GUI'
executables = [
Executable('explo.py', base=base,
icon='explo.ico',
targetName='ExplosionGenerator'
)
]
setup(name='explo',
version='1.0',
description='Explosion Generator',
options={'build_exe': build_options},
executables=executables)