diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 283fd6902e901ca92644ad227a08ff4a23e0ee08..0000000000000000000000000000000000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-stages:
-  - build
-
-#build_linux:
- # image: python:3.8-slim
-  #stage: build
-  #script:
-  #  - apt-get update && apt-get install -y binutils
-   # - pip install pyinstaller pyqt6 pandas matplotlib
-   # - pyinstaller --onefile --windowed main.py
-  #artifacts:
-  #  paths:
-   #   - dist/main.exe  # Only upload the main executable, not the whole dist folder
-
-build_macos:
-  image: python:3.8-slim
-  stage: build
-  script:
-    - apt-get update && apt-get install -y python3 python3-pip
-    - pip3 install pyinstaller pyqt6 pandas matplotlib
-    - pyinstaller --onefile --windowed main.py
-  artifacts:
-    paths:
-      - dist/main.app  # Only upload the macOS executable
diff --git a/Linux/main.exe b/Linux/main.exe
deleted file mode 100644
index 5e70135ff7fb777be821374050bc2809dbbfa911..0000000000000000000000000000000000000000
Binary files a/Linux/main.exe and /dev/null differ
diff --git a/dist/main.exe b/dist/main.exe
deleted file mode 100644
index 5e70135ff7fb777be821374050bc2809dbbfa911..0000000000000000000000000000000000000000
Binary files a/dist/main.exe and /dev/null differ
diff --git a/e.txt b/e.txt
deleted file mode 100644
index 2c470aeb3b30e972422efd2a70587c729d9f8a9e..0000000000000000000000000000000000000000
--- a/e.txt
+++ /dev/null
@@ -1 +0,0 @@
-gitlab-runner register --url https://gitlab.uwe.ac.uk --token glrt-t3_okWwP_pBNs5c_8UGmuEd
diff --git a/main.spec b/main.spec
deleted file mode 100644
index c55496f1caa83f822ae79f14328c082326736092..0000000000000000000000000000000000000000
--- a/main.spec
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*- mode: python ; coding: utf-8 -*-
-
-
-a = Analysis(
-    ['main.py'],
-    pathex=[],
-    binaries=[],
-    datas=[],
-    hiddenimports=[],
-    hookspath=[],
-    hooksconfig={},
-    runtime_hooks=[],
-    excludes=[],
-    noarchive=False,
-    optimize=0,
-)
-pyz = PYZ(a.pure)
-
-exe = EXE(
-    pyz,
-    a.scripts,
-    a.binaries,
-    a.datas,
-    [],
-    name='main',
-    debug=False,
-    bootloader_ignore_signals=False,
-    strip=False,
-    upx=True,
-    upx_exclude=[],
-    runtime_tmpdir=None,
-    console=False,
-    disable_windowed_traceback=False,
-    argv_emulation=False,
-    target_arch=None,
-    codesign_identity=None,
-    entitlements_file=None,
-)