-
Notifications
You must be signed in to change notification settings - Fork 2
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
6671e6c
commit 98d74df
Showing
49 changed files
with
3,371 additions
and
0 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 @@ | ||
*.png filter=lfs diff=lfs merge=lfs -text |
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,8 @@ | ||
build | ||
dist | ||
__pycache__ | ||
MANIFEST | ||
cmd.bat | ||
/venv | ||
*.ini | ||
*.json |
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,34 @@ | ||
# -*- mode: python -*- | ||
|
||
from PyInstaller.utils.hooks import collect_data_files | ||
|
||
block_cipher = None | ||
|
||
a = Analysis(['./src/Main.py'], | ||
pathex=[], | ||
binaries=[], | ||
datas=[ | ||
('./resources', 'resources'), | ||
*collect_data_files('acestatpy') | ||
], | ||
hiddenimports=[], | ||
hookspath=[], | ||
runtime_hooks=[], | ||
excludes=[], | ||
win_no_prefer_redirects=False, | ||
win_private_assemblies=False, | ||
cipher=block_cipher) | ||
|
||
pyz = PYZ(a.pure, a.zipped_data, | ||
cipher=block_cipher) | ||
exe = EXE(pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.zipfiles, | ||
a.datas, | ||
name='ACEstatGUI', | ||
debug=False, | ||
strip=False, | ||
upx=True, | ||
console=False, | ||
icon='resources/icons/usace_logo.ico' ) |
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,4 @@ | ||
:: Python 3 | ||
CALL venv\Scripts\activate.bat | ||
python -m PyInstaller ACEstatGUI.spec | ||
pause |
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,6 @@ | ||
#acestatpy==2022.4.28.1 # Must be installed from file | ||
matplotlib==3.5.1 | ||
PyQt5==5.15.6 | ||
pyqtgraph==0.12.3 | ||
#PyQt6==6.0.3 | ||
#PySide6==6.0.3 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE RCC><RCC version="1.0"> | ||
<qresource> | ||
<file>icons/usace_logo.ico</file> | ||
<file>styles/ElegantDark.qss</file> | ||
<file>Tests.xml</file> | ||
</qresource> | ||
<qresource prefix="/dark"> | ||
<file alias="arrow_down.png">icons/dark/arrow_down.png</file> | ||
<file alias="arrow_down_disabled.png">icons/dark/arrow_down_disabled.png</file> | ||
<file alias="arrow_up.png">icons/dark/arrow_up.png</file> | ||
<file alias="arrow_up_disabled.png">icons/dark/arrow_up_disabled.png</file> | ||
<file alias="arrow_right.png">icons/dark/arrow_right.png</file> | ||
<file alias="arrow_right_disabled.png">icons/dark/arrow_right_disabled.png</file> | ||
<file alias="arrow_left.png">icons/dark/arrow_left.png</file> | ||
<file alias="arrow_left_disabled.png">icons/dark/arrow_left_disabled.png</file> | ||
</qresource> | ||
<qresource prefix="/light"> | ||
<file alias="arrow_down.png">icons/light/arrow_down.png</file> | ||
<file alias="plus.png">icons/light/plus.png</file> | ||
<file alias="minus.png">icons/light/minus.png</file> | ||
<file alias="filesave.png">icons/light/filesave.png</file> | ||
<file alias="home.png">icons/light/home.png</file> | ||
<file alias="move.png">icons/light/move.png</file> | ||
<file alias="next.png">icons/light/next.png</file> | ||
<file alias="prev.png">icons/light/prev.png</file> | ||
<file alias="zoom_to_rect.png">icons/light/zoom_to_rect.png</file> | ||
</qresource> | ||
</RCC> |
Oops, something went wrong.