-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 1.07 KB
/
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
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict(packages = [], excludes = [], include_files = ['mdoc', 'pdoc', 'menus.ico', 'ding.mp3'])
import sys
base = 'Win32GUI' if sys.platform=='win32' else None
executables = [
Executable('enjoywork.py', base=base, compress = True, icon = "menus.ico"),
Executable('runenjoywork.py', base=base, compress = True, icon = "menus.ico"),
Executable('newimages.py', base=base, compress = True, icon = "menus.ico"),
Executable('update.py', base=base, compress = True)
]
# Executable('newimages.py', base=base, compress = True, icon = "newimages.ico"), Executable('update.py', base=base, compress = True)
# Executable('newimages.py', base=base,compress = True, icon = "newimages.ico")
setup(name='NewEnjoyWork',
version = '2.0',
description = 'A enjoy worker tools',
author = 'readmorejoy.com',
author_email = '[email protected]',
options = dict(build_exe = buildOptions),
executables = executables)