-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sh
executable file
·33 lines (28 loc) · 962 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
# set -e
# SUDO=sudo
# if ! command -v $SUDO; then
# echo no sudo on this system, proceeding as current user
# SUDO=""
# fi
# if command -v apt-get; then
# if dpkg -l python3-venv; then
# echo "python3-venv is installed, skipping setup"
# else
# if ! apt info python3-venv; then
# echo python3-venv package info not found, trying apt update
# $SUDO apt-get -qq update
# fi
# $SUDO apt-get install -qqy python3-venv
# fi
# else
# echo Skipping tool installation because your platform is missing apt-get.
# echo If you see failures below, install the equivalent of python3-venv for your system.
# fi
# source .env
# echo creating virtualenv at $VIRTUAL_ENV
# python3 -m venv $VIRTUAL_ENV
# $VIRTUAL_ENV/bin/pip install -r requirements.txt
# source .venv/bin/activate
python -m PyInstaller --onefile --hidden-import="googleapiclient" --add-data "./src/models/:src/models" src/main.py
# tar -czvf dist/archive.tar.gz dist/main