-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Build requirements Pinned some libraries version
- Loading branch information
Showing
17 changed files
with
248 additions
and
243 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,8 +1,14 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-pyright.pyright", | ||
"ms-python.vscode-pylance", | ||
"ms-python.python", | ||
"sonarsource.sonarlint-vscode", | ||
"davidanson.vscode-markdownlint" | ||
"davidanson.vscode-markdownlint", | ||
"shardulm94.trailing-spaces", | ||
"eamodio.gitlens" | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-pyright.pyright", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
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
This file was deleted.
Oops, something went wrong.
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
BASEDIR=$(dirname "$0") | ||
pyinstaller -w -F --icon=src/icon.ico "BASEDIR/../src/AutoSplit.py" |
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
BASEDIR=$(dirname "$0") | ||
pip3 install -r "BASEDIR/requirements.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,21 @@ | ||
# Requirements file for AutoSplit | ||
# | ||
# Python: CPython 3.7+ | ||
# | ||
# Usage: ./install.bat | ||
# | ||
# If you're having issues with the libraries, you might want to first run: | ||
# pip3 uninstall -r requirements.txt | ||
# | ||
# Creating AutoSplit.exe with PyInstaller: ./build.bat | ||
# | ||
# Comment this out if you don't want to create AutoSplit.exe: | ||
PyInstaller | ||
# | ||
# Other dependencies: | ||
PyQT5==5.9 | ||
opencv-python | ||
Pillow | ||
ImageHash | ||
pywin32==226 | ||
keyboard |
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
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
Oops, something went wrong.