diff --git a/make-standalone.bat b/make-standalone.bat deleted file mode 100644 index 2f89afa..0000000 --- a/make-standalone.bat +++ /dev/null @@ -1,13 +0,0 @@ -mkdir build -mkdir dist -python setup-cxfreeze.py build_exe --build-exe=build\custom-install-standalone -mkdir build\custom-install-standalone\bin -copy TaskbarLib.tlb build\custom-install-standalone -copy bin\win32\save3ds_fuse.exe build\custom-install-standalone\bin -copy bin\README build\custom-install-standalone\bin -copy custom-install-finalize.3dsx build\custom-install-standalone -copy title.db.gz build\custom-install-standalone -copy extras\windows-quickstart.txt build\custom-install-standalone -copy extras\run_with_cmd.bat build\custom-install-standalone -copy LICENSE.md build\custom-install-standalone -python -m zipfile -c dist\custom-install-standalone.zip build\custom-install-standalone diff --git a/setup-cxfreeze.py b/setup-cxfreeze.py deleted file mode 100644 index 2f4ae49..0000000 --- a/setup-cxfreeze.py +++ /dev/null @@ -1,19 +0,0 @@ -import sys -from cx_Freeze import setup, Executable - -if sys.platform == 'win32': - executables = [ - Executable('ci-gui.py', target_name='ci-gui-console'), - Executable('ci-gui.py', target_name='ci-gui', base='Win32GUI'), - ] -else: - executables = [ - Executable('ci-gui.py', target_name='ci-gui'), - ] - -setup( - name = "ci-gui", - version = "2.1b4", - description = "Installs a title directly to an SD card for the Nintendo 3DS", - executables = executables -) diff --git a/windows-install-dependencies.py b/windows-install-dependencies.py deleted file mode 100644 index 45698dc..0000000 --- a/windows-install-dependencies.py +++ /dev/null @@ -1,13 +0,0 @@ -# This is meant to be double-clicked from File Explorer. - -# This doesn't import pip as a module in case the way it's executed changes, which it has in the past. -# Instead we call it like we would in the command line. - -from subprocess import run -from os.path import dirname, join -from sys import executable - -root_dir = dirname(__file__) - -run([executable, '-m', 'pip', 'install', '--user', '-r', join(root_dir, 'requirements-win32.txt')]) -input('Press enter to close')