summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortassaron2022-05-10 15:11:01 -0400
committertassaron2022-05-10 15:11:01 -0400
commit9cf8815aee0601fae67d11cca54d83121f7675f8 (patch)
treeca89d9bb49d44fd64e7de2591b657ae980d5768b
parent162a5cba3d47987474964ace115dc3a245807a94 (diff)
change screenshot, remove unused file
-rw-r--r--freeze.py59
-rw-r--r--screenshot.pngbin23050 -> 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 @@
1from cx_Freeze import setup, Executable
2import sys
3import os
4
5from setup import __version__
6
7
8deps = [os.path.join('src', p) for p in os.listdir('src') if p]
9deps.append('ffmpeg.exe' if sys.platform == 'win32' else 'ffmpeg')
10
11buildOptions = 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
42base = 'Win32GUI' if sys.platform == 'win32' else None
43
44executables = [
45 Executable(
46 'src/main.py',
47 base=base,
48 targetName='audio-visualizer-python'
49 ),
50]
51
52
53setup(
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