From 2e0719712046130cff0759c6b2992dccc1afbb71 Mon Sep 17 00:00:00 2001 From: Kai Piper Date: Sun, 3 Feb 2019 14:31:24 +0000 Subject: [PATCH] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d8f23d6..cd26b8e 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from distutils.core import setup import py2exe, sys, os - +#This to change the script to an exe edit the variables inside the duckhunt-configurable.py file then run this script sys.argv.append('py2exe') setup( @@ -9,7 +9,7 @@ description = 'duckhunt-', options = {'py2exe': {'bundle_files': 1, 'compressed': True}}, - windows = [{'script': "duckhunt.py"}], + windows = [{'script': "duckhunt-configurable.py"}], zipfile = None, )