File size: 242 Bytes
42d6a0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-
"""
Created on Tue Dec 13 18:06:56 2022

@author: gita
"""

from distutils.core import setup
import py2exe

setup(
    options={"py2exe": {"bundle_files": 1}},
    console=[{
        "script": "execute_GUI.py"
    }]
)