diff --git a/.gitignore b/.gitignore
index 0deaca1a..70c2dbd0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@ RaceRom.py
weights/
/MultiMystery/
/Players/
+/QUsb2Snes/
diff --git a/bundle/EntranceRandomizer.spec b/bundle/EntranceRandomizer.spec
deleted file mode 100644
index 308a3ba9..00000000
--- a/bundle/EntranceRandomizer.spec
+++ /dev/null
@@ -1,39 +0,0 @@
-# -*- mode: python -*-
-from PyInstaller.compat import is_win
-block_cipher = None
-
-# Todo: the runtime hooks should only be installed on windows
-a = Analysis(['../EntranceRandomizer.py'],
- pathex=['bundle'],
- binaries=[],
- datas=[('../data/', 'data/'), ('../README.html', '.')],
- hiddenimports=[],
- hookspath=[],
- runtime_hooks=['bundle/_rt_hook.py'],
- excludes=['lzma', 'bz2'],
- win_no_prefer_redirects=False,
- win_private_assemblies=False,
- cipher=block_cipher)
-pyz = PYZ(a.pure, a.zipped_data,
- cipher=block_cipher)
-
-exe = EXE(pyz,
- a.scripts,
- exclude_binaries=True,
- name='EntranceRandomizer',
- debug=False,
- strip=False,
- upx=False,
- icon='../data/ER.ico',
- console=is_win )
-coll = COLLECT(exe,
- a.binaries,
- a.zipfiles,
- a.datas,
- strip=False,
- upx=False,
- name='EntranceRandomizer')
-app = BUNDLE(coll,
- name ='EntranceRandomizer.app',
- icon = '../data/ER.icns',
- bundle_identifier = None)
diff --git a/bundle/_rt_hook.py b/bundle/_rt_hook.py
deleted file mode 100644
index 17ea446b..00000000
--- a/bundle/_rt_hook.py
+++ /dev/null
@@ -1,4 +0,0 @@
-import sys
-import os
-
-sys.path.append(os.path.join(sys._MEIPASS, "ext"))
diff --git a/bundle/components.xslt b/bundle/components.xslt
deleted file mode 100644
index 1b4c7132..00000000
--- a/bundle/components.xslt
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/bundle/installer.wxs b/bundle/installer.wxs
deleted file mode 100644
index f5d111d7..00000000
--- a/bundle/installer.wxs
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
- INSTALLDIR
-
-
-
-
- 1
- 1
-
-
-
diff --git a/setup.py b/setup.py
index 57e6f245..fd6ca17d 100644
--- a/setup.py
+++ b/setup.py
@@ -96,7 +96,7 @@ def installfile(path):
print('Warning,', path, 'not found')
-extra_data = ["LICENSE", "data", "EnemizerCLI", "host.yaml"]
+extra_data = ["LICENSE", "data", "EnemizerCLI", "host.yaml", "QUsb2Snes"]
for data in extra_data:
installfile(Path(data))