-
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
1 parent
20cdb51
commit 04628c1
Showing
5 changed files
with
75 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import os | ||
|
||
colorSchemesPath = os.path.abspath(os.path.dirname(__file__) + '/../colorSchemes/scheme_*.py') | ||
|
||
datas = [ | ||
(colorSchemesPath, 'gui/themes/colorSchemes/'), | ||
] |
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,7 @@ | ||
import os | ||
|
||
sitePackagesPath = os.path.abspath(os.path.abspath(os.path.dirname(__file__)) + '/../venv/Lib/site-packages') | ||
|
||
datas = [ | ||
(sitePackagesPath + '/minecraft_data/data/data', 'minecraft_data/data/data'), | ||
] |
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,12 @@ | ||
rem DANGER!: | ||
rmdir /s /q ".\build\" | ||
|
||
pyinstaller --onefile main.py ^ | ||
-p ..\Cat ^ | ||
--additional-hooks-dir _hooks ^ | ||
--hidden-import PyQt5.QtPrintSupport ^ | ||
--exclude-module bprofile ^ | ||
--exclude-module Cat.utils.bprofileCustom ^ | ||
--noconfirm | ||
@pause | ||
rem--hidden-import markdown ^ |
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