-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MightyPotatoast
committed
Aug 19, 2021
1 parent
a60b146
commit 8d4c7ec
Showing
4 changed files
with
34 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# commande à taper en ligne de commande après la sauvegarde de ce fichier: | ||
# python setup.py build | ||
|
||
from cx_Freeze import setup, Executable | ||
|
||
executables = [ | ||
Executable(script = "main.py",icon = "discord.ico", base = "Win32GUI" ) | ||
] | ||
# ne pas mettre "base = ..." si le programme n'est pas en mode graphique | ||
|
||
buildOptions = dict( | ||
includes = ["tkinter","ffmpeg"], | ||
include_files = ["./bin"] | ||
) | ||
|
||
setup( | ||
name = "Discpress", | ||
version = "1.0", | ||
description = "Transcode video files to fit discord weight limit", | ||
author = "MightyPotatoast", | ||
options = dict(build_exe = buildOptions), | ||
executables = executables | ||
) |