-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 952 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 952 Bytes
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
from cx_Freeze import setup, Executable
exe = Executable(
script="main.py",
base="Win32Gui",
icon="E:\\Python\\Fun Marathon\\resources\\dsicon.ico",
shortcutName = "Fun Marathon",
shortcutDir = "DesktopFolder"
)
exe2 = Executable(
script="main.py",
base="Win32Gui",
icon="E:\\Python\\Fun Marathon\\resources\\dsicon.ico",
shortcutName = "Fun Marathon",
shortcutDir = "StartMenuFolder"
)
setup(
version = "1.0",
description = "An application to show when your FDs are matured and help you save time.",
author = "Dhruv Somani",
name = "FD Storage",
options = {'build_exe': {'packages':['tkinter', 'tkinter.ttk', 'tkinter.tix', 'tkinter.messagebox',
'tkinter.colorchooser', 'tkinter.filedialog', 'sqlite3',
'os', 'PIL', 'objects', 'widgets']}},
executables = [exe, exe2]
)