mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
24 lines
604 B
Batchfile
24 lines
604 B
Batchfile
echo Build Cython app
|
|
set CURRENT_DIR=%cd%
|
|
|
|
REM Change to the parent directory of the current location
|
|
cd /d %~dp0
|
|
|
|
echo remove dist folder:
|
|
if exist dist rmdir dist /s /q
|
|
if exist build rmdir build /s /q
|
|
|
|
echo install python and dependencies
|
|
if not exist venv (
|
|
python -m venv venv
|
|
)
|
|
|
|
venv\Scripts\python -m pip install --upgrade pip
|
|
venv\Scripts\pip install -r requirements.txt
|
|
venv\Scripts\pip install --upgrade pyinstaller pyinstaller-hooks-contrib
|
|
|
|
venv\Scripts\python setup.py build_ext --inplace
|
|
|
|
echo install azaion-loader
|
|
venv\Scripts\pyinstaller --name=azaion-loader ^
|
|
--collect-all boto3 ^ |