+# -*- coding: utf-8 -*-
# This will create a dist directory containing the executable file, all the data
# directories. All Libraries will be bundled in executable file.
#
class BuildExe:
def __init__(self):
#Name of starting .py
- self.script = "MyApps.py"
+ self.script = "src/minwii/app.py"
#Name of program
- self.project_name = "MyApps"
+ self.project_name = "MINWii"
#Project url
self.project_url = "about:none"
dist_dir = self.dist_dir
)
- if os.path.isdir('build'): #Clean up build dir
- shutil.rmtree('build')
+ #if os.path.isdir('build'): #Clean up build dir
+ # shutil.rmtree('build')
if __name__ == '__main__':
if operator.lt(len(sys.argv), 2):