forked from wz-bff/AutoComper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 694 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import sys
from cx_Freeze import setup, Executable
from config import VERSION
base = 'Win32GUI' if sys.platform == 'win32' else None
includefiles = ['ffmpeg/', 'img/', 'models/']
includes = ['yt_dlp.utils._deprecated']
excludes = ['Tkinter']
packages = ['moviepy']
setup(
name='AutoComper',
version=VERSION,
description='Automatic Comp Creation Tool',
author='wz-bff',
options={'build_exe': {'includes': includes, 'excludes': excludes,
'packages': packages, 'include_files': includefiles}},
executables=[Executable('autocomper.py',
base=base,
icon="app.ico")]
)