From 9cf8815aee0601fae67d11cca54d83121f7675f8 Mon Sep 17 00:00:00 2001 From: tassaron Date: Tue, 10 May 2022 15:11:01 -0400 Subject: change screenshot, remove unused file --- freeze.py | 59 ----------------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 freeze.py (limited to 'freeze.py') diff --git a/freeze.py b/freeze.py deleted file mode 100644 index 520b445..0000000 --- a/freeze.py +++ /dev/null @@ -1,59 +0,0 @@ -from cx_Freeze import setup, Executable -import sys -import os - -from setup import __version__ - - -deps = [os.path.join('src', p) for p in os.listdir('src') if p] -deps.append('ffmpeg.exe' if sys.platform == 'win32' else 'ffmpeg') - -buildOptions = dict( - excludes=[ - "apport", - "apt", - "curses", - "distutils", - "email", - "html", - "http", - "xmlrpc", - "nose", - 'tkinter', - ], - includes=[ - "encodings", - "json", - "filecmp", - "numpy.core._methods", - "numpy.lib.format", - "PyQt5.QtCore", - "PyQt5.QtGui", - "PyQt5.QtWidgets", - "PyQt5.uic", - "PIL.Image", - "PIL.ImageQt", - "PIL.ImageDraw", - "PIL.ImageEnhance", - ], - include_files=deps, -) - -base = 'Win32GUI' if sys.platform == 'win32' else None - -executables = [ - Executable( - 'src/main.py', - base=base, - targetName='audio-visualizer-python' - ), -] - - -setup( - name='audio-visualizer-python', - version=__version__, - description='GUI tool to render visualization videos of audio files', - options=dict(build_exe=buildOptions), - executables=executables -) -- cgit v1.2.3