-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from EternalWraith/pre-0.5
v0.5 release merge
- Loading branch information
Showing
35 changed files
with
6,305 additions
and
845 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
__pycache__ | ||
current.pson | ||
current.pson | ||
build | ||
data.txt |
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,18 @@ | ||
import sys, os | ||
from cx_Freeze import setup, Executable | ||
|
||
build_options = { | ||
"excludes": [], | ||
"zip_include_packages": [], | ||
"include_files": ["resources/", "resources/data/"], | ||
} | ||
|
||
base = "Win32GUI" if sys.platform == "win32" else None | ||
|
||
setup( | ||
name = "PalEdit v0.5", | ||
version = "0.5", | ||
description = "A simple tool for editing PalWorld saves", | ||
options={"build_exe": build_options}, | ||
executables=[Executable("PalEdit.py", base=base, icon="resources/MossandaIcon.ico")], | ||
) |
Oops, something went wrong.