diff options
| -rw-r--r-- | freeze.py | 59 | ||||
| -rw-r--r-- | screenshot.png | bin | 23050 -> 22202 bytes |
2 files changed, 0 insertions, 59 deletions
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 -) diff --git a/screenshot.png b/screenshot.png Binary files differindex 3a6e6ea..67676b6 100644 --- a/screenshot.png +++ b/screenshot.png |
