Skip to content

Commit

Permalink
cx_Freeze build method
Browse files Browse the repository at this point in the history
  • Loading branch information
Zwylair committed Feb 24, 2024
1 parent 0d2e89a commit 28489fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 90 deletions.
90 changes: 0 additions & 90 deletions build.py

This file was deleted.

12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import sys
from cx_Freeze import setup, Executable

# base="Win32GUI" should be used only for Windows GUI app
# base = "Win32GUI" if sys.platform == "win32" else None

setup(
name="BetterDiscordAutoInstaller",
version="1.1.0",
description="",
executables=[Executable("installer.py"), Executable("startup_manager.py")], # , base=base
)

0 comments on commit 28489fd

Please sign in to comment.