-
Notifications
You must be signed in to change notification settings - Fork 26
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 #35 from MannLabs/develop
Win one-click installer updates
- Loading branch information
Showing
3 changed files
with
38 additions
and
35 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
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,5 +1,7 @@ | ||
if __name__ == "__main__": | ||
import alphatims.gui | ||
import alphatims.utils | ||
import multiprocessing | ||
multiprocessing.freeze_support() | ||
alphatims.utils.set_logger() | ||
alphatims.gui.run() |
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,10 +1,10 @@ | ||
call conda create -n alphatimsinstaller python=3.8 -y | ||
call conda activate alphatimsinstaller | ||
REM call conda install git -y | ||
REM call pip install 'git+https://github.com/MannLabs/alphatims.git#egg=alphatims[gui,cli]' --use-feature=2020-resolver | ||
call pip install ../.[gui,cli] --use-feature=2020-resolver | ||
REM call pip install 'git+https://github.com/MannLabs/alphatims.git#egg=alphatims[gui]' --use-feature=2020-resolver | ||
call pip install ../.[gui] --use-feature=2020-resolver | ||
call pip install pyinstaller | ||
call pyinstaller alphatims.spec -y | ||
call conda deactivate | ||
REM call "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" alphatims_innoinstaller.iss | ||
call iscc alphatims_innoinstaller.iss | ||
call conda deactivate |