diff options
| author | tassaron | 2022-05-10 15:11:01 -0400 |
|---|---|---|
| committer | tassaron | 2022-05-10 15:11:01 -0400 |
| commit | 9cf8815aee0601fae67d11cca54d83121f7675f8 (patch) | |
| tree | ca89d9bb49d44fd64e7de2591b657ae980d5768b | |
| parent | 162a5cba3d47987474964ace115dc3a245807a94 (diff) | |
change screenshot, remove unused file
| -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 @@ | |||
| 1 | from cx_Freeze import setup, Executable | ||
| 2 | import sys | ||
| 3 | import os | ||
| 4 | |||
| 5 | from setup import __version__ | ||
| 6 | |||
| 7 | |||
| 8 | deps = [os.path.join('src', p) for p in os.listdir('src') if p] | ||
| 9 | deps.append('ffmpeg.exe' if sys.platform == 'win32' else 'ffmpeg') | ||
| 10 | |||
| 11 | buildOptions = dict( | ||
| 12 | excludes=[ | ||
| 13 | "apport", | ||
| 14 | "apt", | ||
| 15 | "curses", | ||
| 16 | "distutils", | ||
| 17 | "email", | ||
| 18 | "html", | ||
| 19 | "http", | ||
| 20 | "xmlrpc", | ||
| 21 | "nose", | ||
| 22 | 'tkinter', | ||
| 23 | ], | ||
| 24 | includes=[ | ||
| 25 | "encodings", | ||
| 26 | "json", | ||
| 27 | "filecmp", | ||
| 28 | "numpy.core._methods", | ||
| 29 | "numpy.lib.format", | ||
| 30 | "PyQt5.QtCore", | ||
| 31 | "PyQt5.QtGui", | ||
| 32 | "PyQt5.QtWidgets", | ||
| 33 | "PyQt5.uic", | ||
| 34 | "PIL.Image", | ||
| 35 | "PIL.ImageQt", | ||
| 36 | "PIL.ImageDraw", | ||
| 37 | "PIL.ImageEnhance", | ||
| 38 | ], | ||
| 39 | include_files=deps, | ||
| 40 | ) | ||
| 41 | |||
| 42 | base = 'Win32GUI' if sys.platform == 'win32' else None | ||
| 43 | |||
| 44 | executables = [ | ||
| 45 | Executable( | ||
| 46 | 'src/main.py', | ||
| 47 | base=base, | ||
| 48 | targetName='audio-visualizer-python' | ||
| 49 | ), | ||
| 50 | ] | ||
| 51 | |||
| 52 | |||
| 53 | setup( | ||
| 54 | name='audio-visualizer-python', | ||
| 55 | version=__version__, | ||
| 56 | description='GUI tool to render visualization videos of audio files', | ||
| 57 | options=dict(build_exe=buildOptions), | ||
| 58 | executables=executables | ||
| 59 | ) | ||
diff --git a/screenshot.png b/screenshot.png index 3a6e6ea..67676b6 100644 --- a/screenshot.png +++ b/screenshot.png | |||
| Binary files differ | |||
